提交 eb2e109b 编写于 作者: J José Valim

Merge pull request #1963 from jake3030/fix_engine_rake_task

Fix engine rake task
......@@ -67,3 +67,5 @@ def find_engine_path(path)
find_engine_path(File.expand_path('..', path))
end
end
Rake.application.invoke_task(:load_app)
......@@ -159,6 +159,14 @@ def test_ensure_that_tests_works_in_full_mode
assert_match(/1 tests, 1 assertions, 0 failures, 0 errors/, `bundle exec rake test`)
end
def test_ensure_that_migration_tasks_work_with_mountable_option
run_generator [destination_root, "--mountable"]
FileUtils.cd destination_root
quietly { system 'bundle install' }
`bundle exec rake db:migrate`
assert_equal 0, $?.exitstatus
end
def test_creating_engine_in_full_mode
run_generator [destination_root, "--full"]
assert_file "app/assets/javascripts/bukkits"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册