(self)
| 107 | self.assertEqual(len(i), len(self.items2)) |
| 108 | |
| 109 | def test_isdisjoint(self): |
| 110 | self.assertTrue(self.s.isdisjoint(WeakSet(self.items2))) |
| 111 | self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters))) |
| 112 | |
| 113 | def test_and(self): |
| 114 | i = self.s.intersection(self.items2) |
nothing calls this directly
no test coverage detected