提交 84763047 编写于 作者: S Santiago Pastorino

Merge pull request #2326 from castlerock/plugin_generator_fix

pluging generator test fix
......@@ -69,13 +69,13 @@ def test_ensure_that_test_dummy_can_be_generated_from_a_template
def test_database_entry_is_generated_for_sqlite3_by_default_in_full_mode
run_generator([destination_root, "--full"])
assert_file "test/dummy/config/database.yml", /sqlite/
assert_file "Gemfile", /^gem\s+["']sqlite3["']$/
assert_file "bukkits.gemspec", /sqlite3/
end
def test_config_another_database
run_generator([destination_root, "-d", "mysql", "--full"])
assert_file "test/dummy/config/database.yml", /mysql/
assert_file "Gemfile", /^gem\s+["']mysql2["']$/
assert_file "bukkits.gemspec", /mysql/
end
def test_active_record_is_removed_from_frameworks_if_skip_active_record_is_given
......@@ -117,8 +117,8 @@ def test_jquery_is_the_default_javascript_library
assert_match %r{^//= require jquery}, contents
assert_match %r{^//= require jquery_ujs}, contents
end
assert_file 'Gemfile' do |contents|
assert_match(/^gem 'jquery-rails'/, contents)
assert_file 'bukkits.gemspec' do |contents|
assert_match(/jquery-rails/, contents)
end
end
......@@ -128,8 +128,8 @@ def test_other_javascript_libraries
assert_match %r{^//= require prototype}, contents
assert_match %r{^//= require prototype_ujs}, contents
end
assert_file 'Gemfile' do |contents|
assert_match(/^gem 'prototype-rails'/, contents)
assert_file 'bukkits.gemspec' do |contents|
assert_match(/prototype-rails/, contents)
end
end
......@@ -205,10 +205,10 @@ def test_create_mountable_application_with_mountable_option
def test_creating_gemspec
run_generator
assert_file "bukkits.gemspec", /s.name = "bukkits"/
assert_file "bukkits.gemspec", /s.name\s+= "bukkits"/
assert_file "bukkits.gemspec", /s.files = Dir\["\{app,config,db,lib\}\/\*\*\/\*"\]/
assert_file "bukkits.gemspec", /s.test_files = Dir\["test\/\*\*\/\*"\]/
assert_file "bukkits.gemspec", /s.version = "0.0.1"/
assert_file "bukkits.gemspec", /s.version\s+ = Bukkits::VERSION/
end
def test_usage_of_engine_commands
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册