()
| 8586 | |
| 8587 | |
| 8588 | def test_pool_is_quantized(): |
| 8589 | |
| 8590 | quantized_pool = Pool(data=get_quantized_path(QUANTIZED_TRAIN_FILE), column_description=QUANTIZED_CD_FILE) |
| 8591 | assert quantized_pool.is_quantized() |
| 8592 | |
| 8593 | raw_pool = Pool(QUERYWISE_TRAIN_FILE, column_description=QUERYWISE_CD_FILE) |
| 8594 | assert not raw_pool.is_quantized() |
| 8595 | |
| 8596 | |
| 8597 | def test_quantized_pool_with_all_features_ignored(): |
nothing calls this directly
no test coverage detected