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