MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_isdisjoint_superset

Method test_isdisjoint_superset

Lib/test/test_set.py:1203–1205  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1201 self.assertEqual(result, False)
1202
1203 def test_isdisjoint_superset(self):
1204 result = self.set.isdisjoint(set([2, 4, 6, 8]))
1205 self.assertEqual(result, False)
1206
1207 def test_isdisjoint_overlap(self):
1208 result = self.set.isdisjoint(set([3, 4, 5]))

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
isdisjointMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected