(self)
| 648 | self.assertEqual(var.url, "/orgs/org/actions/variables/var%20name") |
| 649 | |
| 650 | def testGetVariables(self): |
| 651 | variables = self.org.get_variables() |
| 652 | self.assertEqual(len(list(variables)), 1) |
| 653 | |
| 654 | @mock.patch("github.PublicKey.encrypt") |
| 655 | def testCreateActionsSecret(self, encrypt): |
nothing calls this directly
no test coverage detected