2015-07-26 23:25:20 +00:00
|
|
|
package gogitlab
|
|
|
|
|
|
|
|
import (
|
2015-09-30 01:21:17 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2015-07-26 23:25:20 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHook(t *testing.T) {
|
|
|
|
ts, gitlab := Stub("stubs/hooks/show.json")
|
|
|
|
hook, err := gitlab.ProjectHook("1", "2")
|
|
|
|
|
|
|
|
assert.Equal(t, err, nil)
|
|
|
|
assert.IsType(t, new(Hook), hook)
|
|
|
|
assert.Equal(t, hook.Url, "http://example.com/hook")
|
|
|
|
defer ts.Close()
|
|
|
|
}
|