Mercurial > rsstweet
view test/controllers/tweets_controller_test.rb @ 234:7a773720d81f legit-client
Totally legit client
author | nanaya <me@nanaya.net> |
---|---|
date | Fri, 14 Jul 2023 22:42:20 +0900 |
parents | e6c29d47192b |
children |
line wrap: on
line source
require "test_helper" class TweetsControllerTest < ActionController::TestCase test "should get show" do get :show, :params => { :id => "2791517370", :name => "edogawa_test", :format => :atom } assert_response :success end test "does not explode on empty timeline" do get :show, :params => { :id => "1519673756624379905", :name => "nanaya_empty2", :format => :atom } assert_response :success end test "redirect on @handle access" do get :redirect, :params => { :name => "edogawa_test", :format => :atom } assert_redirected_to "/2791517370/edogawa_test" end test "should get index" do get :index assert_response :success end end