(self)
| 61 | self.assertEqual(repr(seat), 'CopilotSeat(assignee=NamedUser(login="pashafateev"))') |
| 62 | |
| 63 | def testGetSeats(self): |
| 64 | seats = self.copilot.get_seats() |
| 65 | self.assertListKeyEqual(seats, lambda s: s.assignee.login, ["pashafateev"]) |
| 66 | |
| 67 | def testAddSeats(self): |
| 68 | seats_created = self.copilot.add_seats(["pashafateev"]) |
nothing calls this directly
no test coverage detected