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