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

Method test_sym_difference_method_call

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

Source from the content-addressed store, hash-verified

1291 self.assertEqual(self.set, set([2, 4, 6, 8]))
1292
1293 def test_sym_difference_method_call(self):
1294 self.set.symmetric_difference_update(set([3, 4, 5]))
1295 self.assertEqual(self.set, set([2, 3, 5, 6]))
1296
1297 def test_difference_subset(self):
1298 self.set -= set((2, 4))

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
assertEqualMethod · 0.45

Tested by

no test coverage detected