14 lines
195 B
Python
14 lines
195 B
Python
|
import sys
|
||
|
sys.path.append('../src')
|
||
|
|
||
|
import cellular_automaton.ca_cell as cac
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class TestCellState(unittest.TestCase):
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|