MCPcopy Create free account
hub / github.com/bspaans/python-mingus / test_augment

Method test_augment

tests/unit/containers/test_bar.py:64–76  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

62 self.assertEqual(b, c)
63
64 def test_augment(self):
65 b = Bar()
66 c = Bar()
67 d = Bar()
68 b + "A"
69 c + "A#"
70 d + "A##"
71 b.augment()
72 self.assertEqual(b, c)
73 b.augment()
74 self.assertEqual(b, d)
75 c.augment()
76 self.assertEqual(c, d)
77
78 def test_diminish(self):
79 b = Bar()

Callers

nothing calls this directly

Calls 2

augmentMethod · 0.95
BarClass · 0.90

Tested by

no test coverage detected