Files
python/exercises/say/say_test.py

70 lines
2.0 KiB
Python
Raw Normal View History

2015-11-13 11:09:09 +01:00
import unittest
from say import say
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.2.0
2015-11-13 11:09:09 +01:00
class SayTest(unittest.TestCase):
def test_zero(self):
self.assertEqual(say(0), "zero")
2015-11-13 11:09:09 +01:00
def test_one(self):
self.assertEqual(say(1), "one")
2015-11-13 11:09:09 +01:00
def test_fourteen(self):
self.assertEqual(say(14), "fourteen")
2015-11-13 11:09:09 +01:00
def test_twenty(self):
self.assertEqual(say(20), "twenty")
2015-11-13 11:09:09 +01:00
def test_twenty_two(self):
self.assertEqual(say(22), "twenty-two")
2015-11-13 11:09:09 +01:00
def test_one_hundred(self):
self.assertEqual(say(100), "one hundred")
2015-11-13 11:09:09 +01:00
# additional track specific test
2015-11-13 11:09:09 +01:00
def test_one_hundred_twenty_three(self):
self.assertEqual(say(123), "one hundred and twenty-three")
2015-11-13 11:09:09 +01:00
def test_one_thousand(self):
self.assertEqual(say(1000), "one thousand")
2015-11-13 11:09:09 +01:00
def test_one_thousand_two_hundred_thirty_four(self):
self.assertEqual(say(1234), "one thousand two hundred and thirty-four")
2015-11-13 11:09:09 +01:00
def test_one_million(self):
self.assertEqual(say(1000000), "one million")
2015-11-13 11:09:09 +01:00
def test_1002345(self):
self.assertEqual(
say(1002345),
"one million two thousand three hundred and forty-five")
2015-11-13 11:09:09 +01:00
def test_one_billion(self):
self.assertEqual(say(1000000000), "one billion")
2015-11-13 11:09:09 +01:00
def test_987654321123(self):
self.assertEqual(
say(987654321123), ("nine hundred and eighty-seven billion "
"six hundred and fifty-four million "
"three hundred and twenty-one thousand "
"one hundred and twenty-three"))
2015-11-13 11:09:09 +01:00
def test_number_too_large(self):
with self.assertRaisesWithMessage(ValueError):
say(1000000000000)
def test_number_negative(self):
with self.assertRaisesWithMessage(ValueError):
say(-1)
# Utility functions
def assertRaisesWithMessage(self, exception):
return self.assertRaisesRegex(exception, r".+")
2016-11-29 09:44:47 +01:00
2015-11-13 11:09:09 +01:00
if __name__ == '__main__':
unittest.main()