aboutsummaryrefslogtreecommitdiff
path: root/core_test.go
diff options
context:
space:
mode:
authorDoug Black <doug@dougblack.io>2014-03-29 23:07:54 -0700
committerDoug Black <doug@dougblack.io>2014-03-29 23:07:54 -0700
commit4f8269a8f4b5645b1896314787b5b2389939fa20 (patch)
tree0a4d01551282918300a186f51b5dd06dba9518b4 /core_test.go
parentMerge pull request #13 from yuyabee/export_mux (diff)
parentsetup travis for continuous integration (diff)
downloadsleepy-4f8269a8f4b5645b1896314787b5b2389939fa20.tar.gz
sleepy-4f8269a8f4b5645b1896314787b5b2389939fa20.tar.bz2
sleepy-4f8269a8f4b5645b1896314787b5b2389939fa20.zip
Merge pull request #16 from dmathieu/setup_ci
Setup continuous integrations
Diffstat (limited to 'core_test.go')
-rw-r--r--core_test.go34
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.")
+ }
+}
bgstack15