fix engines rake tasks

This commit is contained in:
Jake Varghese 2011-07-04 15:48:15 -05:00
parent 718542bb18
commit 467c9b6e23
2 changed files with 10 additions and 0 deletions

@ -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"