From c0090c32523c2585d76168195e494f7aa2cbb505 Mon Sep 17 00:00:00 2001 From: scompo Date: Tue, 15 Oct 2019 21:23:27 +0000 Subject: [PATCH] aggiunto test che fallisce Sto test fallisce --- money/tests/test_money.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/money/tests/test_money.py b/money/tests/test_money.py index 017cedb..c66ecb7 100644 --- a/money/tests/test_money.py +++ b/money/tests/test_money.py @@ -11,7 +11,10 @@ class MoneyTest(unittest.TestCase): def test_the_whole_universe(self): self.assertTrue(True, msg='if this fails something is very wrong') - + + def test_the_whole_universe(self): + self.assertTrue(False, msg='This should fail!') + def test_create_input_message(self): self.assertEqual(money.create_input_message( 'f', '##', '0'), 'f (##) [0]: ') -- 2.25.1