Check that we don't lose a default of 0
(self)
| 241 | assert_equal(converter.type, np.dtype(float)) |
| 242 | |
| 243 | def test_keep_default_zero(self): |
| 244 | "Check that we don't lose a default of 0" |
| 245 | converter = StringConverter(int, default=0, |
| 246 | missing_values="N/A") |
| 247 | assert_equal(converter.default, 0) |
| 248 | |
| 249 | def test_keep_missing_values(self): |
| 250 | "Check that we're not losing missing values" |
nothing calls this directly
no test coverage detected