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

Method test_isdisjoint_overlap

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

Source from the content-addressed store, hash-verified

1205 self.assertEqual(result, False)
1206
1207 def test_isdisjoint_overlap(self):
1208 result = self.set.isdisjoint(set([3, 4, 5]))
1209 self.assertEqual(result, False)
1210
1211 def test_isdisjoint_non_overlap(self):
1212 result = self.set.isdisjoint(set([8]))

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
isdisjointMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected