(poolID ksuid.KSUID, branchName string, r io.Reader)
| 92 | } |
| 93 | |
| 94 | func (c *testClient) TestLoad(poolID ksuid.KSUID, branchName string, r io.Reader) ksuid.KSUID { |
| 95 | commit, err := c.Connection.Load(c.Context(), poolID, branchName, "", r, api.CommitMessage{}) |
| 96 | require.NoError(c, err) |
| 97 | return commit.Commit |
| 98 | } |
| 99 | |
| 100 | func (c *testClient) TestAuthMethod() api.AuthMethodResponse { |
| 101 | r, err := c.Connection.AuthMethod(c.Context()) |
no test coverage detected