(self)
| 65 | self.assertListKeyEqual(seats, lambda s: s.assignee.login, ["pashafateev"]) |
| 66 | |
| 67 | def testAddSeats(self): |
| 68 | seats_created = self.copilot.add_seats(["pashafateev"]) |
| 69 | self.assertEqual(seats_created, 1) |
| 70 | |
| 71 | def testRemoveSeats(self): |
| 72 | seats_cancelled = self.copilot.remove_seats(["pashafateev"]) |