()
| 3340 | |
| 3341 | |
| 3342 | def test_difference(): |
| 3343 | t1 = T( |
| 3344 | """ |
| 3345 | | col |
| 3346 | 1 | 11 |
| 3347 | 2 | 12 |
| 3348 | 3 | 13 |
| 3349 | """ |
| 3350 | ) |
| 3351 | t2 = T( |
| 3352 | """ |
| 3353 | | col |
| 3354 | 2 | 11 |
| 3355 | 3 | 11 |
| 3356 | 4 | 11 |
| 3357 | """ |
| 3358 | ) |
| 3359 | |
| 3360 | assert_table_equality( |
| 3361 | t1.difference(t2), |
| 3362 | T( |
| 3363 | """ |
| 3364 | | col |
| 3365 | 1 | 11 |
| 3366 | """ |
| 3367 | ), |
| 3368 | ) |
| 3369 | |
| 3370 | |
| 3371 | def test_intersect(): |
nothing calls this directly
no test coverage detected