aboutsummaryrefslogtreecommitdiff
path: root/tests/items.go
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-26 13:42:50 -0800
committerDoug Black <dblack@twilio.com>2014-01-26 13:42:50 -0800
commit5a10edcd157f6a1d16dea18f137ae6f5a87d5001 (patch)
tree39e26745572f62c9a406038281b16879fa76834b /tests/items.go
parentfix signature (diff)
downloadsleepy-5a10edcd157f6a1d16dea18f137ae6f5a87d5001.tar.gz
sleepy-5a10edcd157f6a1d16dea18f137ae6f5a87d5001.tar.bz2
sleepy-5a10edcd157f6a1d16dea18f137ae6f5a87d5001.zip
fixes from issues
Diffstat (limited to 'tests/items.go')
-rw-r--r--tests/items.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/items.go b/tests/items.go
index d39cae9..978b052 100644
--- a/tests/items.go
+++ b/tests/items.go
@@ -6,9 +6,7 @@ import (
)
type Item struct {
- sleepy.PostNotSupported
- sleepy.PutNotSupported
- sleepy.DeleteNotSupported
+ sleepy.BaseResource
}
func (item Item) Get(values url.Values) (int, interface{}) {
bgstack15