aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/context.py8
-rw-r--r--tests/test_advanced.py16
-rw-r--r--tests/test_basic.py16
3 files changed, 0 insertions, 40 deletions
diff --git a/tests/context.py b/tests/context.py
deleted file mode 100644
index 352a47b..0000000
--- a/tests/context.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import sys
-import os
-
-sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
-
-import fg21sim
diff --git a/tests/test_advanced.py b/tests/test_advanced.py
deleted file mode 100644
index 1ae151c..0000000
--- a/tests/test_advanced.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from .context import fg21sim
-
-import unittest
-
-
-class AdvancedTestSuite(unittest.TestCase):
- """Advanced test cases."""
-
- def test_thoughts(self):
- sample.hmm()
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/tests/test_basic.py b/tests/test_basic.py
deleted file mode 100644
index ea50cf3..0000000
--- a/tests/test_basic.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from .context import fg21sim
-
-import unittest
-
-
-class BasicTestSuite(unittest.TestCase):
- """Basic test cases."""
-
- def test_absolute_truth_and_meaning(self):
- assert True
-
-
-if __name__ == '__main__':
- unittest.main()