You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
7 lines
112 B
Python
7 lines
112 B
Python
import unittest
|
|
|
|
class TestMath(unittest.TestCase):
|
|
def test_add(self):
|
|
self.assertEqual(1 + 1, 2)
|
|
|