diff options
author | Doug Black <dblack@twilio.com> | 2014-02-01 21:38:50 -0500 |
---|---|---|
committer | Doug Black <dblack@twilio.com> | 2014-02-01 21:38:50 -0500 |
commit | 4ae365df8ff01808253809cab80b30debc415727 (patch) | |
tree | 263edfe82314090fa5dda226e64fd08cc848409f /tests/test.go | |
parent | fix docs typo (diff) | |
download | sleepy-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.go | 25 |
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) - -} |