aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.go')
-rw-r--r--tests/test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test.go b/tests/test.go
index 070d4b6..d3f414c 100644
--- a/tests/test.go
+++ b/tests/test.go
@@ -6,9 +6,7 @@ import (
)
type Bar struct {
- sleepy.PostNotSupported
- sleepy.PutNotSupported
- sleepy.DeleteNotSupported
+ sleepy.BaseResource
}
func (b Bar) Get(values url.Values) (int, interface{}) {
bgstack15