BLD: improved smart contract and catalyst commands

This commit is contained in:
Frederic Fortier
2018-01-09 22:42:09 -05:00
parent 22a850ab14
commit e0c8178932
6 changed files with 102 additions and 23 deletions
+12 -2
View File
@@ -1,4 +1,14 @@
from catalyst.marketplace.marketplace import Marketplace
from catalyst.testing.fixtures import WithLogger, ZiplineTestCase
marketplace = Marketplace()
pass
class TestMarketplace(WithLogger, ZiplineTestCase):
def test_list(self):
marketplace = Marketplace()
marketplace.list()
pass
def test_register(self):
marketplace = Marketplace()
marketplace.register('GitHub')
pass