From d90e67954a15853c3df7c824cbcc11c2fcb5fd27 Mon Sep 17 00:00:00 2001 From: edgarriba Date: Sun, 22 May 2016 10:34:08 +0200 Subject: [PATCH] hello world test --- test/test_hello_world.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/test_hello_world.py diff --git a/test/test_hello_world.py b/test/test_hello_world.py new file mode 100644 index 0000000..b9336d2 --- /dev/null +++ b/test/test_hello_world.py @@ -0,0 +1,16 @@ +import unittest + + +class TestUM(unittest.TestCase): + + def setUp(self): + pass + + def test_numbers_3_4(self): + self.assertEqual(3*4, 12) + + def test_strings_a_3(self): + self.assertEqual( 'aaa', 'aaa') + +if __name__ == '__main__': + unittest.main()