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

Method test_empty_isdisjoint

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

Source from the content-addressed store, hash-verified

965 self.assertEqual(result, not self.set)
966
967 def test_empty_isdisjoint(self):
968 result = self.set.isdisjoint(empty_set)
969 self.assertEqual(result, True)
970
971 def test_isdisjoint_empty(self):
972 result = empty_set.isdisjoint(self.set)

Callers

nothing calls this directly

Calls 2

isdisjointMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected