Check that we're not losing missing values
(self)
| 247 | assert_equal(converter.default, 0) |
| 248 | |
| 249 | def test_keep_missing_values(self): |
| 250 | "Check that we're not losing missing values" |
| 251 | converter = StringConverter(int, default=0, |
| 252 | missing_values="N/A") |
| 253 | assert_equal( |
| 254 | converter.missing_values, {'', 'N/A'}) |
| 255 | |
| 256 | def test_int64_dtype(self): |
| 257 | "Check that int64 integer types can be specified" |
nothing calls this directly
no test coverage detected