eth-owned

EIP-173 interface and tools for chainlib-eth
git clone git://holbrook.no/eth-owned.git
Log | Files | Refs

test_owned.py (262B)


      1 # standard imports
      2 import unittest
      3 
      4 # local imports
      5 from eth_owned.unittest import TestOwned as TestOwnedBase
      6 from eth_owned.unittest import TestInterface
      7 
      8 
      9 class TestOwned(TestOwnedBase, TestInterface):
     10     pass
     11 
     12 
     13 if __name__ == '__main__':
     14     unittest.main()