aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien Mathieu <42@dmathieu.com>2014-02-03 13:37:17 +0100
committerDamien Mathieu <42@dmathieu.com>2014-02-03 13:37:17 +0100
commit574cbfde364ed091b0db8075be6e5f9058823bec (patch)
tree4307b00860c343efefca57a7f3a417606e550c78 /tests
parentremove tests.test (diff)
downloadsleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.gz
sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.bz2
sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.zip
setup travis for continuous integration
Diffstat (limited to 'tests')
-rw-r--r--tests/sleepy_test.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/sleepy_test.go b/tests/sleepy_test.go
deleted file mode 100644
index 655d0a6..0000000
--- a/tests/sleepy_test.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package main
-
-import (
- "github.com/dougblack/sleepy"
- "net/url"
- "net/http"
- "testing"
- "io/ioutil"
-)
-
-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 TestBasicGet(t *testing.T) {
-
- item := new(Item)
-
- var api = sleepy.NewAPI()
- api.AddResource(item, "/items", "/bar", "/baz")
- go api.Start(3000)
- resp, err := http.Get("http://localhost:3000/items")
- if err != nil {
- t.Error(err)
- }
- body, _ := ioutil.ReadAll(resp.Body)
- if string(body) != `{"items":["item1","item2"]}` {
- t.Error("Not equal.")
- }
-}
bgstack15