Total Complexity | 1 |
Total Lines | 7 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # This Python file uses the following encoding: utf-8 |
||
8 | class ImpreciseBooleanTest(TestCase): |
||
9 | def test___new__(self): |
||
10 | boolean = ImpreciseBoolean([True, False]) |
||
11 | self.assertEqual( |
||
12 | str(boolean), |
||
13 | "{True, False}", |
||
14 | "The string representation of an imprecise boolean is not correct" |
||
15 | ) |
||
16 |