2012-04-16 21:31:15 -04:00
|
|
|
# -*- 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()
|