Last active
September 13, 2019 13:28
-
-
Save m-kus/498af1faa2555baa62271fd52606ea9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os.path import dirname, join | |
from unittest import TestCase | |
from decimal import Decimal | |
from pytezos import ContractInterface, pytezos, format_timestamp, MichelsonRuntimeError | |
class MyContractTest(TestCase): | |
@classmethod | |
def setUpClass(cls): | |
cls.my = ContractInterface.create_from(join(dirname(__file__), 'my_contract.tz')) | |
cls.maxDiff = None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment