You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-scm/scm/driver/gitlab/review_test.go

45 lines
1.1 KiB
Go

// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gitlab
import (
"context"
"testing"
"git.awesome-for.me/liuzhiguo/go-scm/scm"
)
func TestReviewFind(t *testing.T) {
service := new(reviewService)
_, _, err := service.Find(context.Background(), "diaspora/diaspora", 1, 1)
if err != scm.ErrNotSupported {
t.Errorf("Expect Not Supported error")
}
}
func TestReviewList(t *testing.T) {
service := new(reviewService)
_, _, err := service.List(context.Background(), "diaspora/diaspora", 1, scm.ListOptions{})
if err != scm.ErrNotSupported {
t.Errorf("Expect Not Supported error")
}
}
func TestReviewCreate(t *testing.T) {
service := new(reviewService)
_, _, err := service.Create(context.Background(), "diaspora/diaspora", 1, nil)
if err != scm.ErrNotSupported {
t.Errorf("Expect Not Supported error")
}
}
func TestReviewDelete(t *testing.T) {
service := new(reviewService)
_, err := service.Delete(context.Background(), "diaspora/diaspora", 1, 1)
if err != scm.ErrNotSupported {
t.Errorf("Expect Not Supported error")
}
}