diff options
author | Teo Ljungberg <teo@teoljungberg.com> | 2016-02-28 23:59:32 +0100 |
---|---|---|
committer | Teo Ljungberg <teo@teoljungberg.com> | 2016-02-29 09:04:57 +0100 |
commit | 5a0dddda0980cefbaf80e9f8f10369f62a1d19d8 (patch) | |
tree | b2bbf4a5975d453ea5112813b4a16fdc7bbf7c16 /railties/test | |
parent | caa6fb3eb40e40b7c7487a1815482951cd162d7a (diff) | |
download | rails-5a0dddda0980cefbaf80e9f8f10369f62a1d19d8.tar.gz rails-5a0dddda0980cefbaf80e9f8f10369f62a1d19d8.tar.bz2 rails-5a0dddda0980cefbaf80e9f8f10369f62a1d19d8.zip |
Address ruby warnings
- Ambiguous first argument
- Mismatched indentation
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/integration_test_case_test.rb | 2 | ||||
-rw-r--r-- | railties/test/generators/channel_generator_test.rb | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/railties/test/application/integration_test_case_test.rb b/railties/test/application/integration_test_case_test.rb index 40a79fc636..d106d5159a 100644 --- a/railties/test/application/integration_test_case_test.rb +++ b/railties/test/application/integration_test_case_test.rb @@ -40,7 +40,7 @@ module ApplicationTests output = Dir.chdir(app_path) { `bin/rails test 2>&1` } assert_equal 0, $?.to_i, output - assert_match /0 failures, 0 errors/, output + assert_match(/0 failures, 0 errors/, output) end end end diff --git a/railties/test/generators/channel_generator_test.rb b/railties/test/generators/channel_generator_test.rb index e31736a74c..cda9e8b910 100644 --- a/railties/test/generators/channel_generator_test.rb +++ b/railties/test/generators/channel_generator_test.rb @@ -6,16 +6,16 @@ class ChannelGeneratorTest < Rails::Generators::TestCase tests Rails::Generators::ChannelGenerator def test_application_cable_skeleton_is_created - run_generator ['books'] + run_generator ['books'] - assert_file "app/channels/application_cable/channel.rb" do |cable| - assert_match(/module ApplicationCable\n class Channel < ActionCable::Channel::Base\n/, cable) - end + assert_file "app/channels/application_cable/channel.rb" do |cable| + assert_match(/module ApplicationCable\n class Channel < ActionCable::Channel::Base\n/, cable) + end - assert_file "app/channels/application_cable/connection.rb" do |cable| - assert_match(/module ApplicationCable\n class Connection < ActionCable::Connection::Base\n/, cable) - end - end + assert_file "app/channels/application_cable/connection.rb" do |cable| + assert_match(/module ApplicationCable\n class Connection < ActionCable::Connection::Base\n/, cable) + end + end def test_channel_is_created run_generator ['chat'] |