Files
python/exercises/say/say_test.py

77 lines
2.2 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.0.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(self):
self.assertEqual(say(120), "one hundred and twenty")
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
# additional track specific test
def test_eight_hundred_and_ten_thousand(self):
self.assertEqual(say(810000), "eight hundred and ten thousand")
2015-11-13 11:09:09 +01:00
def test_one_million(self):
self.assertEqual(say(1e6), "one million")
2015-11-13 11:09:09 +01:00
# additional track specific test
2015-11-13 11:09:09 +01:00
def test_one_million_two(self):
self.assertEqual(say(1000002), "one million and two")
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(1e9), "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_to_large(self):
with self.assertRaises(ValueError):
say(1e12)
def test_number_negative(self):
with self.assertRaises(ValueError):
say(-1)
2016-11-29 09:44:47 +01:00
2015-11-13 11:09:09 +01:00
if __name__ == '__main__':
unittest.main()