From 96c30c12927dec64c8e97c54d86286ba3396269e Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Apr 18 2016 16:26:11 +0000 Subject: [PATCH 1/3] You shall not pass! --- diff --git a/test.py b/test.py index cf14671..f360883 100644 --- a/test.py +++ b/test.py @@ -8,6 +8,9 @@ class MyTestCase(unittest.TestCase): def test_more(self): self.assertTrue(1 + 1 is 2) + def test_fail(self): + self.assertTrue(1000 + 1 is 1001) + if __name__ == '__main__': unittest.main() From 48954512fc3631b5f721203a4453e66b0c9f8ab9 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Apr 18 2016 16:30:43 +0000 Subject: [PATCH 2/3] Fly you fools! --- diff --git a/test.py b/test.py index f360883..553eaa6 100644 --- a/test.py +++ b/test.py @@ -8,8 +8,8 @@ class MyTestCase(unittest.TestCase): def test_more(self): self.assertTrue(1 + 1 is 2) - def test_fail(self): - self.assertTrue(1000 + 1 is 1001) + def test_dont_fail(self): + self.assertTrue(1000 + 1 == 1001) if __name__ == '__main__': From c2167a48618531709662d2e2897bf2a064013a22 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Jul 28 2016 17:10:57 +0000 Subject: [PATCH 3/3] Another update --- diff --git a/README.markdown b/README.markdown index e6b2438..37fd123 100644 --- a/README.markdown +++ b/README.markdown @@ -3,3 +3,5 @@ This is a place for me to try a slightly crazy idea that I have. Nothing to see here yet. Really. + +Foo bar baz