Skip to content

Commit 3fe00e4

Browse files
authored
Merge pull request #1 from tomhutest/tomhutest/add-frown-test
Update tests
2 parents 523096d + 9503a13 commit 3fe00e4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44

55

66
class TestMethods(unittest.TestCase):
7-
def test_add(self):
7+
def test_smile(self):
88
self.assertEqual(awesome.smile(), ":)")
9+
10+
def test_frowny(self):
11+
self.assertEqual(awesome.frown(), ":(")
912

1013

1114
if __name__ == '__main__':

0 commit comments

Comments
 (0)