未验证 提交 0d864e7e 编写于 作者: R Rafael França 提交者: GitHub

Merge pull request #33350 from kamipo/address_blank_lines_automatically

Enable `Layout/EmptyLinesAroundBlockBody` to reduce review cost in the future
......@@ -52,6 +52,9 @@ Layout/EndAlignment:
Layout/EmptyLineAfterMagicComment:
Enabled: true
Layout/EmptyLinesAroundBlockBody:
Enabled: true
# In a regular class definition, no empty lines around the body.
Layout/EmptyLinesAroundClassBody:
Enabled: true
......
......@@ -41,7 +41,6 @@ def on_error(message)
# Internal hax = :(
client = connection.websocket.send(:websocket)
client.instance_variable_get("@stream").stub(:write, proc { raise "foo" }) do
assert_not_called(client, :client_gone) do
client.write("boo")
end
......
......@@ -41,7 +41,6 @@ def match?(path)
rescue SystemCallError
false
end
}
return ::Rack::Utils.escape_path(match).b
end
......
......@@ -66,7 +66,6 @@ def test_override_paths_for_member_and_collection_methods
member_methods.each_key do |action|
assert_named_route "/messages/1/#{path_names[action] || action}", "#{action}_message_path", action: action, id: "1"
end
end
end
end
......
......@@ -937,7 +937,6 @@ def default_route_set
@default_route_set ||= begin
set = ActionDispatch::Routing::RouteSet.new
set.draw do
ActiveSupport::Deprecation.silence do
get "/:controller(/:action(/:id))"
end
......@@ -1342,11 +1341,9 @@ def test_root_map
def test_namespace
set.draw do
namespace "api" do
get "inventory" => "products#inventory"
end
end
params = request_path_params("/api/inventory", method: :get)
......
......@@ -220,7 +220,6 @@ class InsertManagerTest < Arel::Spec
end
describe "select" do
it "accepts a select query in place of a VALUES clause" do
table = Table.new :users
......@@ -238,7 +237,6 @@ class InsertManagerTest < Arel::Spec
INSERT INTO "users" ("id", "name") (SELECT 1, "aaron")
}
end
end
end
end
......@@ -244,8 +244,6 @@ def test_join_sources
@m2 = Arel::SelectManager.new table
@m2.project Arel.star
@m2.where(table[:age].gt(99))
end
it "should union two managers" do
......@@ -266,7 +264,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" < 18 UNION ALL SELECT * FROM "users" WHERE "users"."age" > 99 )
}
end
end
describe "intersect" do
......@@ -279,8 +276,6 @@ def test_join_sources
@m2 = Arel::SelectManager.new table
@m2.project Arel.star
@m2.where(table[:age].lt(99))
end
it "should interect two managers" do
......@@ -293,7 +288,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" > 18 INTERSECT SELECT * FROM "users" WHERE "users"."age" < 99 )
}
end
end
describe "except" do
......@@ -318,7 +312,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" BETWEEN 18 AND 60 EXCEPT SELECT * FROM "users" WHERE "users"."age" BETWEEN 40 AND 99 )
}
end
end
describe "with" do
......@@ -647,7 +640,6 @@ def test_join_sources
end
describe "joins" do
it "returns inner join sql" do
table = Table.new :users
aliaz = table.alias
......@@ -1002,7 +994,6 @@ def test_join_sources
end
describe "update" do
it "creates an update statement" do
table = Table.new :users
manager = Arel::SelectManager.new
......@@ -1075,7 +1066,6 @@ def test_join_sources
UPDATE "users" SET "id" = 1 WHERE "users"."id" IN (SELECT "users"."id" FROM "users" WHERE "users"."foo" = 10 LIMIT 42)
}
end
end
describe "project" do
......@@ -1097,7 +1087,6 @@ def test_join_sources
manager.project "*"
manager.to_sql.must_be_like %{ SELECT * }
end
end
describe "projections" do
......
......@@ -91,7 +91,6 @@ def test_compute_type_on_undefined_method
end
ActiveSupport::Dependencies.stub(:safe_constantize, proc { raise e }) do
exception = assert_raises NameError do
Company.send :compute_type, "InvalidModel"
end
......
......@@ -669,7 +669,6 @@ def test_should_not_remove_scheduled_destroys_when_loading_association
def test_should_take_a_hash_with_composite_id_keys_and_assign_the_attributes_to_the_associated_models
@child_1.stub(:id, "ABC1X") do
@child_2.stub(:id, "ABC2X") do
@pirate.attributes = {
association_getter => [
{ id: @child_1.id, name: "Grace OMalley" },
......
......@@ -482,7 +482,6 @@ def test_query_caching_is_local_to_the_current_thread
assert_not ActiveRecord::Base.connection.query_cache_enabled
}.join
}.call({})
end
end
......
......@@ -573,7 +573,6 @@ def test_rollback_when_commit_raises
assert_called(Topic.connection, :begin_db_transaction) do
Topic.connection.stub(:commit_db_transaction, -> { raise("OH NOES") }) do
assert_called(Topic.connection, :rollback_db_transaction) do
e = assert_raise RuntimeError do
Topic.transaction do
# do nothing
......
# frozen_string_literal: true
ActiveRecord::Schema.define do
if subsecond_precision_supported?
create_table :datetime_defaults, force: true do |t|
t.datetime :modified_datetime, default: -> { "CURRENT_TIMESTAMP" }
......
# frozen_string_literal: true
ActiveRecord::Schema.define do
execute "drop table test_oracle_defaults" rescue nil
execute "drop sequence test_oracle_defaults_seq" rescue nil
execute "drop sequence companies_nonstd_seq" rescue nil
......@@ -38,5 +37,4 @@
)
SQL
execute "create sequence defaults_seq minvalue 10000"
end
# frozen_string_literal: true
ActiveRecord::Schema.define do
enable_extension!("uuid-ossp", ActiveRecord::Base.connection)
enable_extension!("pgcrypto", ActiveRecord::Base.connection) if ActiveRecord::Base.connection.supports_pgcrypto_uuid?
......
......@@ -258,7 +258,6 @@ def find_by_namespace(name, base = nil, context = nil) #:nodoc:
namespaces = Hash[subclasses.map { |klass| [klass.namespace, klass] }]
lookups.each do |namespace|
klass = namespaces[namespace]
return klass if klass
end
......
# frozen_string_literal: true
namespace :log do
##
# Truncates all/specified log files
# ENV['LOGS']
......
......@@ -570,7 +570,6 @@ def index
get("/arunagw")
assert_equal "arunagw", last_response.body
end
test "it provides routes as default endpoint" do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册