Merge pull request #13 from bitsai/master

bump data.json version, remove public-timeline (deprecated)
This commit is contained in:
Adam Wynne 2012-11-04 03:08:02 -08:00
commit 11b909dd1b
3 changed files with 1 additions and 3 deletions

View file

@ -3,6 +3,6 @@
:plugins [[lein-clojars "0.7.0"]
[lein-swank "1.4.4"]]
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/data.json "0.1.1"]
[org.clojure/data.json "0.2.1"]
[http.async.client "0.4.5"]
[org.clojars.adamwynne/clj-oauth "1.2.13"]])

View file

@ -40,7 +40,6 @@
(def-twitter-restful-method blocking-user-ids :get "blocks/blocking/ids.json")
;; Timeline
(def-twitter-restful-method public-timeline :get "statuses/public_timeline.json")
(def-twitter-restful-method home-timeline :get "statuses/home_timeline.json")
(def-twitter-restful-method user-timeline :get "statuses/user_timeline.json")
(def-twitter-restful-method mentions :get "statuses/mentions.json")

View file

@ -26,7 +26,6 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(deftest test-timeline
(is-200 public-timeline)
(is-200 home-timeline)
(is-200 user-timeline)
(is-200 mentions)