9 lines
208 B
Python
9 lines
208 B
Python
from __future__ import print_function
|
|
import sensehatsnake.main
|
|
import unittest
|
|
|
|
|
|
class MainTestCase(unittest.TestCase):
|
|
def test__init__(self):
|
|
self.assertTrue("main" in dir(sensehatsnake.main))
|