Пример #1
0
 def test_pi_with_valid_input(self):
     with self.assertRaises(SystemExit) as se:
         pi.main(lambda: '12', lambda: 'q')
     self.assertEqual(se.exception.code, 0)
     self.assertEqual(pi.pi(2), Decimal('3.14'))
Пример #2
0
 def test_pi_with_q_first(self):
     with self.assertRaises(SystemExit) as se:
         pi.main(lambda: 'q', lambda: 'q')
     self.assertEqual(se.exception.code, 0)
Пример #3
0
 def test_pi_input_too_large(self):
     with self.assertRaises(SystemExit) as se:
         pi.main(lambda: '50', lambda: 'q')
     self.assertEqual(se.exception.code, 0)
     self.assertIn('Please try again', pi.pi(50))
Пример #4
0
 def test_pi_input_negative(self):
     with self.assertRaises(SystemExit) as se:
         pi.main(lambda: '-2', lambda: 'q')
     self.assertIn('Please try again', pi.pi(-2))
     self.assertEqual(se.exception.code, 0)
Пример #5
0
 def test_pi_nan_input(self):
     with self.assertRaises(SystemExit) as se:
         pi.main(lambda: 'foo', lambda: 'q')
     self.assertEqual(se.exception.code, 0)
     self.assertIn('Please try again', pi.pi('foo'))