MCPcopy
hub / github.com/pathwaycom/pathway / test_difference

Function test_difference

python/pathway/tests/test_common.py:3342–3368  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3340
3341
3342def 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
3371def test_intersect():

Callers

nothing calls this directly

Calls 2

TFunction · 0.90
differenceMethod · 0.80

Tested by

no test coverage detected