implement datatypes

+tests

as agreed in last meeting

Change-Id: Ibc382f808927797e7e7ea268b97a5632713bfb56
This commit is contained in:
Enrico Faulhaber
2017-06-21 11:59:13 +02:00
parent f984129986
commit a87e568b55
4 changed files with 753 additions and 0 deletions

19
test/conftest.py Normal file
View File

@ -0,0 +1,19 @@
# content of conftest.py
import pytest
@pytest.fixture(scope="module")
def constants():
# setup
class Constants(object):
ONE = 1
TWO = 2
c = Constants()
yield c
# teardown
del c
@pytest.fixture(scope="session")
def globals():
return dict()