Mercurial > rsstweet
annotate test/controllers/tweets_controller_test.rb @ 185:f67f3ad50270
Update to latest rails and gems
| author | nanaya <me@nanaya.pro> | 
|---|---|
| date | Sun, 14 Jul 2019 15:38:04 +0900 | 
| parents | 2b0ba614fc02 | 
| children | e8eb5caae9c1 | 
| rev | line source | 
|---|---|
| 19 | 1 require "test_helper" | 
| 15 | 2 | 
| 3 class TweetsControllerTest < ActionController::TestCase | |
| 4 test "should get show" do | |
| 182 | 5 get :show, :params => { :id => "2791517370", :name => "edogawa_test", :format => :atom } | 
| 15 | 6 assert_response :success | 
| 7 end | |
| 38 
9e03bbbb1d43
Move static#index to tweet#index.
 edogawaconan <me@myconan.net> parents: 
19diff
changeset | 8 | 
| 48 
8983c426e256
Prevent exploding on empty timeline.
 nanaya <me@myconan.net> parents: 
38diff
changeset | 9 test "does not explode on empty timeline" do | 
| 182 | 10 get :show, :params => { :id => "3168319146", :name => "nanaya_t_empty", :format => :atom } | 
| 48 
8983c426e256
Prevent exploding on empty timeline.
 nanaya <me@myconan.net> parents: 
38diff
changeset | 11 assert_response :success | 
| 
8983c426e256
Prevent exploding on empty timeline.
 nanaya <me@myconan.net> parents: 
38diff
changeset | 12 end | 
| 
8983c426e256
Prevent exploding on empty timeline.
 nanaya <me@myconan.net> parents: 
38diff
changeset | 13 | 
| 55 
8f68ca606099
Add twitter id to the url so it'll be consistent.
 nanaya <me@myconan.net> parents: 
48diff
changeset | 14 test "redirect on @handle access" do | 
| 182 | 15 get :redirect, :params => { :name => "edogawa_test", :format => :atom } | 
| 55 
8f68ca606099
Add twitter id to the url so it'll be consistent.
 nanaya <me@myconan.net> parents: 
48diff
changeset | 16 assert_redirected_to "/2791517370/edogawa_test" | 
| 
8f68ca606099
Add twitter id to the url so it'll be consistent.
 nanaya <me@myconan.net> parents: 
48diff
changeset | 17 end | 
| 
8f68ca606099
Add twitter id to the url so it'll be consistent.
 nanaya <me@myconan.net> parents: 
48diff
changeset | 18 | 
| 38 
9e03bbbb1d43
Move static#index to tweet#index.
 edogawaconan <me@myconan.net> parents: 
19diff
changeset | 19 test "should get index" do | 
| 
9e03bbbb1d43
Move static#index to tweet#index.
 edogawaconan <me@myconan.net> parents: 
19diff
changeset | 20 get :index | 
| 
9e03bbbb1d43
Move static#index to tweet#index.
 edogawaconan <me@myconan.net> parents: 
19diff
changeset | 21 assert_response :success | 
| 
9e03bbbb1d43
Move static#index to tweet#index.
 edogawaconan <me@myconan.net> parents: 
19diff
changeset | 22 end | 
| 15 | 23 end | 
