diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-09-20 17:28:55 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-09-20 17:28:55 +0800 |
commit | 8e0aad8633ea3484a5a679fef6d04f7249f1400a (patch) | |
tree | e7d965f74d10674ec539531aed8feec68d5a17f4 /tests/test_basic.py | |
parent | 393f6b3833e5ce1a197d507e628f7452de1b65a3 (diff) | |
download | fg21sim-8e0aad8633ea3484a5a679fef6d04f7249f1400a.tar.bz2 |
Setup package structures
Credit: https://github.com/kennethreitz/samplemod
TODO: Add the 'docs' part
Diffstat (limited to 'tests/test_basic.py')
-rw-r--r-- | tests/test_basic.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py new file mode 100644 index 0000000..ea50cf3 --- /dev/null +++ b/tests/test_basic.py @@ -0,0 +1,16 @@ +# -*- 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() |