16 lines
257 B
Python
16 lines
257 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from .context import sample
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class BasicTestSuite(unittest.TestCase):
|
||
|
"""Basic test cases."""
|
||
|
|
||
|
def test_absolute_truth_and_meaning(self):
|
||
|
assert True
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|