10 lines
174 B
Python
10 lines
174 B
Python
import unittest
|
|
|
|
from src.snanosm.mealy import Machine
|
|
|
|
|
|
class TestMachine(unittest.TestCase):
|
|
|
|
def test_init(self):
|
|
m = Machine()
|
|
self.assertIsNotNone(m) |