mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-28 17:33:01 +08:00
8 lines
184 B
Python
8 lines
184 B
Python
from unittest2 import TestCase
|
|
|
|
class TestEnviroment(TestCase):
|
|
|
|
def test_universe(self):
|
|
# first order logic is working today. Yay!
|
|
self.assertTrue(True != False)
|