Skip to content

Commit

Permalink
hello world test
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarriba committed May 22, 2016
1 parent a8fe11a commit d90e679
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/test_hello_world.py
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit d90e679

Please sign in to comment.