mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Fix CreateRepository
This commit is contained in:
parent
22f785dafa
commit
284a2dc210
@ -954,8 +954,14 @@ Create a new repository. Requires an existing project in which this repository w
|
|||||||
|
|
||||||
@param projectKey the parent project key
|
@param projectKey the parent project key
|
||||||
@return */
|
@return */
|
||||||
func (a *DefaultApiService) CreateRepository(projectKey string) (*APIResponse, error) {
|
func (a *DefaultApiService) CreateRepository(projectKey string, repository Repository) (*APIResponse, error) {
|
||||||
return a.CreateRepositoryWithOptions(projectKey, nil, []string{})
|
|
||||||
|
localVarPostBody, err := json.Marshal(repository)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return a.CreateRepositoryWithOptions(projectKey, localVarPostBody, []string{"application/json"})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *DefaultApiService) CreateRepositoryWithOptions(projectKey string, localVarPostBody interface{}, localVarHTTPContentTypes []string) (*APIResponse, error) {
|
func (a *DefaultApiService) CreateRepositoryWithOptions(projectKey string, localVarPostBody interface{}, localVarHTTPContentTypes []string) (*APIResponse, error) {
|
||||||
|
@ -808,6 +808,7 @@ func TestDefaultApiService_CreateRepository(t *testing.T) {
|
|||||||
}
|
}
|
||||||
type args struct {
|
type args struct {
|
||||||
projectKey string
|
projectKey string
|
||||||
|
repo Repository
|
||||||
}
|
}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -826,7 +827,7 @@ func TestDefaultApiService_CreateRepository(t *testing.T) {
|
|||||||
a := &DefaultApiService{
|
a := &DefaultApiService{
|
||||||
client: tt.fields.client,
|
client: tt.fields.client,
|
||||||
}
|
}
|
||||||
got, err := a.CreateRepository(tt.args.projectKey)
|
got, err := a.CreateRepository(tt.args.projectKey, tt.args.repo)
|
||||||
if (err != nil) != tt.wantErr {
|
if (err != nil) != tt.wantErr {
|
||||||
t.Errorf("DefaultApiService.CreateRepository() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("DefaultApiService.CreateRepository() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user