aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-02-01 21:38:50 -0500
committerDoug Black <dblack@twilio.com>2014-02-01 21:38:50 -0500
commit4ae365df8ff01808253809cab80b30debc415727 (patch)
tree263edfe82314090fa5dda226e64fd08cc848409f /tests/test.go
parentfix docs typo (diff)
downloadsleepy-4ae365df8ff01808253809cab80b30debc415727.tar.gz
sleepy-4ae365df8ff01808253809cab80b30debc415727.tar.bz2
sleepy-4ae365df8ff01808253809cab80b30debc415727.zip
consolidate tests, add gitignore
Diffstat (limited to 'tests/test.go')
-rw-r--r--tests/test.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/test.go b/tests/test.go
deleted file mode 100644
index b316043..0000000
--- a/tests/test.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-import (
- "github.com/dougblack/sleepy"
- "net/url"
-)
-
-type Item struct{}
-
-func (item Item) Get(values url.Values) (int, interface{}) {
- items := []string{"item1", "item2"}
- data := map[string][]string{"items": items}
-
- return 200, data
-}
-
-func main() {
-
- item := new(Item)
-
- var api = sleepy.NewAPI()
- api.AddResource(item, "/items", "/bar", "/baz")
- api.Start(3000)
-
-}
bgstack15