From e75ffb831c6b80ede82fed1bb8fd3a9e980cc4b3 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Mar 16 2016 20:24:14 +0000 Subject: [PATCH 1/3] Update readme --- diff --git a/README.markdown b/README.markdown index 729ffa1..c6a784a 100644 --- a/README.markdown +++ b/README.markdown @@ -1,3 +1,5 @@ # About This is a place for me to try a slightly crazy idea that I have. + +Nothing to see here yet. From b5b231b9fda113df489ba2ede88914f59c8f5784 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Mar 16 2016 20:35:43 +0000 Subject: [PATCH 2/3] New commit --- diff --git a/README.markdown b/README.markdown index c6a784a..e6b2438 100644 --- a/README.markdown +++ b/README.markdown @@ -2,4 +2,4 @@ This is a place for me to try a slightly crazy idea that I have. -Nothing to see here yet. +Nothing to see here yet. Really. From 78390d9382d5f7c57d5aefe66e4caa743f1d34bc Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Mar 26 2016 16:23:43 +0000 Subject: [PATCH 3/3] Test PR ....... --- diff --git a/test.py b/test.py index a390ccf..cf14671 100644 --- a/test.py +++ b/test.py @@ -5,6 +5,9 @@ class MyTestCase(unittest.TestCase): def test_true(self): self.assertEqual(2, 1 + 1) + def test_more(self): + self.assertTrue(1 + 1 is 2) + if __name__ == '__main__': unittest.main()