From 5a10edcd157f6a1d16dea18f137ae6f5a87d5001 Mon Sep 17 00:00:00 2001 From: Doug Black Date: Sun, 26 Jan 2014 13:42:50 -0800 Subject: fixes from issues --- tests/items.go | 4 +--- tests/test.go | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'tests') 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{}) { 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{}) { -- cgit