aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.go')
-rw-r--r--tests/test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test.go b/tests/test.go
index 53c7f9e..4610f3d 100644
--- a/tests/test.go
+++ b/tests/test.go
@@ -15,12 +15,6 @@ func (b Bar) Get(values ...url.Values) (int, interface{}) {
return 200, map[string]string{"hello": "goodbye"}
}
-type Baz struct {
- sleepy.PostNotSupported
- sleepy.PutNotSupported
- sleepy.DeleteNotSupported
-}
-
func main() {
bar := new(Bar)
bgstack15