1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Use default argument when testing generators without the need for extra args

This commit is contained in:
Carlos Antonio da Silva 2014-07-30 23:13:59 -03:00
parent bfc2b23128
commit 72c96dea2d
2 changed files with 7 additions and 7 deletions

View file

@ -253,7 +253,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
def test_config_jdbc_database_when_no_option_given
if defined?(JRUBY_VERSION)
run_generator([destination_root])
run_generator
assert_file "config/database.yml", /sqlite3/
assert_gem "activerecord-jdbcsqlite3-adapter"
end
@ -295,7 +295,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
def test_inclusion_of_javascript_runtime
run_generator([destination_root])
run_generator
if defined?(JRUBY_VERSION)
assert_gem "therubyrhino"
else
@ -398,7 +398,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
def test_new_hash_style
run_generator [destination_root]
run_generator
assert_file "config/initializers/session_store.rb" do |file|
assert_match(/config.session_store :cookie_store, key: '_.+_session'/, file)
end

View file

@ -95,7 +95,7 @@ class PluginGeneratorTest < Rails::Generators::TestCase
end
def test_generating_adds_dummy_app_without_javascript_and_assets_deps
run_generator [destination_root]
run_generator
assert_file "test/dummy/app/assets/stylesheets/application.css"
@ -335,7 +335,7 @@ class PluginGeneratorTest < Rails::Generators::TestCase
Object.const_set('APP_PATH', Rails.root)
FileUtils.touch gemfile_path
run_generator [destination_root]
run_generator
assert_file gemfile_path, /gem 'bukkits', path: 'tmp\/bukkits'/
ensure
@ -376,7 +376,7 @@ class PluginGeneratorTest < Rails::Generators::TestCase
name = `git config user.name`.chomp rescue "TODO: Write your name"
email = `git config user.email`.chomp rescue "TODO: Write your email address"
run_generator [destination_root]
run_generator
assert_file "bukkits.gemspec" do |contents|
assert_match name, contents
assert_match email, contents
@ -386,7 +386,7 @@ class PluginGeneratorTest < Rails::Generators::TestCase
def test_git_name_in_license_file
name = `git config user.name`.chomp rescue "TODO: Write your name"
run_generator [destination_root]
run_generator
assert_file "MIT-LICENSE" do |contents|
assert_match name, contents
end