mirror of
https://github.com/tiny-pilot/tinypilot.git
synced 2023-10-01 22:58:29 +03:00
11 lines
205 B
Python
11 lines
205 B
Python
import unittest
|
|
|
|
from app import dummy
|
|
|
|
|
|
class DummyTest(unittest.TestCase):
|
|
"""Replace this with a real unit test class."""
|
|
|
|
def test_dummy(self):
|
|
self.assertEqual('dummy', dummy.dummy())
|