rewrite testsuite in python

This commit is contained in:
Nicholas O'Leary
2012-11-08 21:45:41 +00:00
parent 5ffa607322
commit f8cd24f0ef
5 changed files with 165 additions and 75 deletions

View File

@ -0,0 +1,12 @@
import unittest
class mqtt_basic(unittest.TestCase):
def setUp(self):
pass
def test_one(self):
self.assertEqual(3,3)
def test_two(self):
self.assertEqual(4,4)