Ryuta Kamizono 2020-09-16 09:04:09 +09:00
parent 10d95e6848
commit c848baffd2
16 changed files with 0 additions and 16 deletions

View File

@ -503,7 +503,6 @@ module ActionController
process_controller_response(action, cookies, xhr)
end
def controller_class_name
@controller.class.anonymous? ? "anonymous" : @controller.class.controller_path
end

View File

@ -1,6 +1,5 @@
# frozen_string_literal: true
require "action_dispatch/journey/gtg/transition_table"
module ActionDispatch

View File

@ -247,7 +247,6 @@ XML
assert_equal JSON.parse(@response.body)["foo"], "bar"
end
def test_body_stream
params = Hash[:page, { name: "page name" }, "some key", 123]

View File

@ -106,7 +106,6 @@ module ActionView
SameCollectionIterator.new(collection, partial, iter_vars)
end
template = find_template(partial, @locals.keys + iter_vars)
layout = if !block && (layout = @options[:layout])

View File

@ -509,7 +509,6 @@ class AssetTagHelperTest < ActionView::TestCase
assert_dom_equal %(<script src="/javascripts/foo.js"></script>), javascript_include_tag("foo.js")
end
def test_should_set_preload_links
stylesheet_link_tag("http://example.com/style.css")
javascript_include_tag("http://example.com/all.js")

View File

@ -260,7 +260,6 @@ class AVLogSubscriberTest < ActiveSupport::TestCase
end
end
def test_render_collection_with_implicit_path
Rails.stub(:root, File.expand_path(FIXTURE_LOAD_PATH)) do
set_cache_controller

View File

@ -72,7 +72,6 @@ module RenderTestCases
assert_equal "Hello world!", @view.render(template: "test/hello_world")
end
def test_render_file
assert_equal "Hello world!", assert_deprecated { @view.render(file: "test/hello_world") }
end

View File

@ -100,7 +100,6 @@ module ActiveRecord
first_config && name == first_config.name
end
# Returns the DatabaseConfigurations object as a Hash.
def to_h
configurations.inject({}) do |memo, db_config|

View File

@ -96,7 +96,6 @@ class QueryCacheTest < ActiveRecord::TestCase
clean_up_connection_handler
end
if Process.respond_to?(:fork) && !in_memory_db?
def test_query_cache_with_multiple_handlers_and_forked_processes
ActiveRecord::Base.connection_handlers = {

View File

@ -8,7 +8,6 @@ require "models/essay"
require "models/comment"
require "models/categorization"
module ActiveRecord
class WhereChainTest < ActiveRecord::TestCase
fixtures :posts, :comments, :authors, :humans, :essays

View File

@ -102,7 +102,6 @@ class Class
end
RUBY
class_methods << <<~RUBY
silence_redefinition_of_method def #{name}=(value)
redefine_method(:#{name}) { value } if singleton_class?

View File

@ -164,7 +164,6 @@ class TestJSONEncoding < ActiveSupport::TestCase
assert_equal({ "foo" => { "foo" => "hello" } }, JSON.parse(json))
end
def test_hash_should_pass_encoding_options_to_children_in_as_json
person = {
name: "John",

View File

@ -44,7 +44,6 @@ module Rails
def load_tests(argv)
patterns = extract_filters(argv)
tests = Rake::FileList[patterns.any? ? patterns : default_test_glob]
tests.exclude(default_test_exclude_glob) if patterns.empty?

View File

@ -178,7 +178,6 @@ class Rails::Command::CredentialsCommandTest < ActiveSupport::TestCase
assert_match(encrypted_content, run_diff_command(content_path))
end
private
def run_edit_command(editor: "cat", environment: nil, **options)
switch_env("EDITOR", editor) do

View File

@ -25,7 +25,6 @@ class Rails::Command::InitializersTest < ActiveSupport::TestCase
assert final_output.include?("set_added_test_module")
end
test "prints out initializers only specified in environment option" do
add_to_config <<-RUBY
initializer(:set_added_development_module) { } if Rails.env.development?

View File

@ -15,7 +15,6 @@ class ModelGeneratorTest < Rails::Generators::TestCase
Rails.application.config.active_record.belongs_to_required_by_default = true
end
def teardown
Rails.application.config.active_record.belongs_to_required_by_default = @old_belongs_to_required_by_default
end