Test creation of a StringConverter
(self)
| 142 | "Test StringConverter" |
| 143 | |
| 144 | def test_creation(self): |
| 145 | "Test creation of a StringConverter" |
| 146 | converter = StringConverter(int, -99999) |
| 147 | assert_equal(converter._status, 1) |
| 148 | assert_equal(converter.default, -99999) |
| 149 | |
| 150 | def test_upgrade(self): |
| 151 | "Tests the upgrade method." |
nothing calls this directly
no test coverage detected