aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-10-31 16:36:23 +0800
committerAaron LI <aly@aaronly.me>2018-10-31 16:36:23 +0800
commit01c61b6b3c9eb8c1d5723d4f9ca9da12b7a3d0be (patch)
tree0142f8520ff54ee923d04a33d433d8b1dfd51fdd /tests
parentc84b208aefd0a500091aeb1e40507dde91412aa4 (diff)
downloadfg21sim-01c61b6b3c9eb8c1d5723d4f9ca9da12b7a3d0be.tar.bz2
Remove the empty tests
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()