D | test_enum.py | 152 TAU = 2 * PI variable in TestEnum.setUp.Konstants 557 self.assertFormatIsValue('{}', Konstants.TAU) 558 self.assertFormatIsValue('{:}', Konstants.TAU) 559 self.assertFormatIsValue('{:20}', Konstants.TAU) 560 self.assertFormatIsValue('{:^20}', Konstants.TAU) 561 self.assertFormatIsValue('{:>20}', Konstants.TAU) 562 self.assertFormatIsValue('{:<20}', Konstants.TAU) 563 self.assertFormatIsValue('{:n}', Konstants.TAU) 564 self.assertFormatIsValue('{:5.2}', Konstants.TAU) 565 self.assertFormatIsValue('{:f}', Konstants.TAU)
|