Sha256: 16dff492561482e79cd25acc4b3b81bc9b0ac13192b967f1adea6d6aaad44925

Contents?: true

Size: 1.98 KB

Versions: 52

Compression:

Stored size: 1.98 KB

Contents

import unittest

from book_store import calculate_total


# Tests adapted from `problem-specifications//canonical-data.json` @ v1.3.0

class BookStoreTests(unittest.TestCase):
    def test_only_a_single_book(self):
        self.assertEqual(calculate_total([1]), 800)

    def test_two_of_the_same_book(self):
        self.assertEqual(calculate_total([2, 2]), 1600)

    def test_empty_basket(self):
        self.assertEqual(calculate_total([]), 0)

    def test_two_different_books(self):
        self.assertEqual(calculate_total([1, 2]), 1520)

    def test_three_different_books(self):
        self.assertEqual(calculate_total([1, 2, 3]), 2160)

    def test_four_different_books(self):
        self.assertEqual(calculate_total([1, 2, 3, 4]), 2560)

    def test_five_different_books(self):
        self.assertEqual(calculate_total([1, 2, 3, 4, 5]), 3000)

    def test_two_groups_of_4_is_cheaper_than_group_of_5_plus_group_of_3(self):
        self.assertEqual(calculate_total([1, 1, 2, 2, 3, 3, 4, 5]), 5120)

    def test_group_of_4_plus_group_of_2_is_cheaper_than_2_groups_of_3(self):
        self.assertEqual(calculate_total([1, 1, 2, 2, 3, 4]), 4080)

    def test_two_each_of_first_4_books_and_1_copy_each_of_rest(self):
        self.assertEqual(calculate_total([1, 1, 2, 2, 3, 3, 4, 4, 5]), 5560)

    def test_two_copies_of_each_book(self):
        self.assertEqual(calculate_total([1, 1, 2, 2, 3, 3, 4, 4, 5, 5]), 6000)

    def test_three_copies_of_first_book_and_2_each_of_remaining(self):
        self.assertEqual(
            calculate_total([1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 1]), 6800)

    def test_three_each_of_first_2_books_and_2_each_of_remaining_books(self):
        self.assertEqual(
            calculate_total([1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 1, 2]), 7520)

    def test_four_groups_of_4_are_cheaper_than_2_groups_each_of_5_and_3(self):
        self.assertEqual(
            calculate_total([1, 1, 2, 2, 3, 3, 4, 5, 1, 1, 2, 2, 3, 3, 4, 5]),
            10240)


if __name__ == '__main__':
    unittest.main()

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
trackler-2.2.1.140 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.139 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.138 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.137 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.136 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.135 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.134 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.133 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.132 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.131 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.130 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.129 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.128 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.127 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.126 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.125 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.124 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.123 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.122 tracks/python/exercises/book-store/book_store_test.py
trackler-2.2.1.121 tracks/python/exercises/book-store/book_store_test.py