diff options
author | Damien Mathieu <42@dmathieu.com> | 2014-02-03 13:37:17 +0100 |
---|---|---|
committer | Damien Mathieu <42@dmathieu.com> | 2014-02-03 13:37:17 +0100 |
commit | 574cbfde364ed091b0db8075be6e5f9058823bec (patch) | |
tree | 4307b00860c343efefca57a7f3a417606e550c78 /core_test.go | |
parent | remove tests.test (diff) | |
download | sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.gz sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.bz2 sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.zip |
setup travis for continuous integration
Diffstat (limited to 'core_test.go')
-rw-r--r-- | core_test.go | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/core_test.go b/core_test.go new file mode 100644 index 0000000..196c52f --- /dev/null +++ b/core_test.go @@ -0,0 +1,34 @@ +package sleepy + +import ( + "github.com/dougblack/sleepy" + "io/ioutil" + "net/http" + "net/url" + "testing" +) + +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.") + } +} |