(self)
| 614 | self.assertEqual(self.org.get_migrations().totalCount, 2) |
| 615 | |
| 616 | def testGetInstallations(self): |
| 617 | installations = self.org.get_installations() |
| 618 | self.assertEqual(installations[0].id, 123456) |
| 619 | self.assertEqual(installations[0].app_id, 10101) |
| 620 | self.assertEqual(installations[0].target_id, 3344556) |
| 621 | self.assertEqual(installations[0].target_type, "User") |
| 622 | self.assertEqual(installations.totalCount, 1) |
| 623 | |
| 624 | def testCreateVariable(self): |
| 625 | variable = self.org.create_variable("variable-name", "variable-value", "all") |
nothing calls this directly
no test coverage detected