(self)
| 1286 | assert expected == repr(v) |
| 1287 | |
| 1288 | def test_repr_lazy_data(self): |
| 1289 | v = Variable("x", LazilyIndexedArray(np.arange(2e5))) |
| 1290 | assert "200000 values with dtype" in repr(v) |
| 1291 | assert isinstance(v._data, LazilyIndexedArray) |
| 1292 | |
| 1293 | def test_detect_indexer_type(self): |
| 1294 | """Tests indexer type was correctly detected.""" |
nothing calls this directly
no test coverage detected