(self)
| 143 | self.assertTrue(actual is True or actual is False) |
| 144 | |
| 145 | def test_and(self): |
| 146 | i = self.s.intersection(self.otherword) |
| 147 | self.assertEqual(self.s & set(self.otherword), i) |
| 148 | self.assertEqual(self.s & frozenset(self.otherword), i) |
| 149 | try: |
| 150 | self.s & self.otherword |
| 151 | except TypeError: |
| 152 | pass |
| 153 | else: |
| 154 | self.fail("s&t did not screen-out general iterables") |
| 155 | |
| 156 | def test_difference(self): |
| 157 | i = self.s.difference(self.otherword) |
nothing calls this directly
no test coverage detected