コード例 #1
0
ファイル: allocation_tests.py プロジェクト: SpivEgin/devenv
class TestAllocations(TestCase):
    def setUp(self):
        self.allocations = Allocations()

    def test_have_default_total_of_zero(self):
        self.assertEqual(D('0.00'), self.allocations.total)

    def test_has_items_interface(self):
        self.allocations.add('A', D('10.00'))

        for code, amount in self.allocations.items():
            self.assertEqual('A', code)
            self.assertEqual(D('10.00'), amount)

    def test_allow_items_to_be_removed(self):
        self.allocations.add('A', D('10.00'))
        self.assertEqual(D('10.00'), self.allocations.total)
        self.allocations.remove('A')
        self.assertEqual(D('0.00'), self.allocations.total)
コード例 #2
0
class AllocationsTestCase(TestCase):

    def setUp(self):
        self.allocations = Allocations()

    def test_have_default_total_of_zero(self):
        self.assertEqual(D('0.00'), self.allocations.total)

    def test_has_items_interface(self):
        self.allocations.add('A', D('10.00'))

        for code, amount in self.allocations.items():
            self.assertEqual('A', code)
            self.assertEqual(D('10.00'), amount)

    def test_allow_items_to_be_removed(self):
        self.allocations.add('A', D('10.00'))
        self.assertEqual(D('10.00'), self.allocations.total)
        self.allocations.remove('A')
        self.assertEqual(D('0.00'), self.allocations.total)

    def test_serialize(self):
        self.allocations.add('A', D('10.00'))
        self.allocations.add('B', D('12.00'))

        serialized = Allocations.serialize(self.allocations)
        self.assertEqual(serialized, '{"A": "10.00", "B": "12.00"}')

    def test_deserialize(self):
        obj = Allocations.deserialize('{"C": "10.00", "D": "12.00"}')
        items = list(obj.items())
        self.assertCountEqual(items, [('C', D('10.00')), ('D', D('12.00'))])
コード例 #3
0
class AllocationsTestCase(TestCase):
    def setUp(self):
        self.allocations = Allocations()

    def test_have_default_total_of_zero(self):
        self.assertEqual(D('0.00'), self.allocations.total)

    def test_has_items_interface(self):
        self.allocations.add('A', D('10.00'))

        for code, amount in self.allocations.items():
            self.assertEqual('A', code)
            self.assertEqual(D('10.00'), amount)

    def test_allow_items_to_be_removed(self):
        self.allocations.add('A', D('10.00'))
        self.assertEqual(D('10.00'), self.allocations.total)
        self.allocations.remove('A')
        self.assertEqual(D('0.00'), self.allocations.total)

    def test_serialize(self):
        self.allocations.add('A', D('10.00'))
        self.allocations.add('B', D('12.00'))

        serialized = Allocations.serialize(self.allocations)
        self.assertEqual(serialized, '{"A": "10.00", "B": "12.00"}')

    def test_deserialize(self):
        obj = Allocations.deserialize('{"C": "10.00", "D": "12.00"}')
        items = list(obj.items())
        self.assertCountEqual(items, [('C', D('10.00')), ('D', D('12.00'))])