Skip to content

Instantly share code, notes, and snippets.

@m-kus
Last active September 13, 2019 13:28
Show Gist options
  • Save m-kus/498af1faa2555baa62271fd52606ea9f to your computer and use it in GitHub Desktop.
Save m-kus/498af1faa2555baa62271fd52606ea9f to your computer and use it in GitHub Desktop.
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