diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-04-05 14:22:29 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-04-05 14:22:29 -0700 |
commit | c037659294555298889a7102c580240804f44d84 (patch) | |
tree | 5dc5c3b3c8ccdb9bd55b2cac8139840034a22ff6 /railties | |
parent | 056030886c117606502c77a0b0f8f5f6ea248892 (diff) | |
download | rails-c037659294555298889a7102c580240804f44d84.tar.gz rails-c037659294555298889a7102c580240804f44d84.tar.bz2 rails-c037659294555298889a7102c580240804f44d84.zip |
do not blow away the test database on every run
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/test_runner_test.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/railties/test/application/test_runner_test.rb b/railties/test/application/test_runner_test.rb index 2839fadee6..405f6af295 100644 --- a/railties/test/application/test_runner_test.rb +++ b/railties/test/application/test_runner_test.rb @@ -58,16 +58,6 @@ module ApplicationTests assert_match "syntax error", error_stream.read end - def test_invoke_rake_db_test_load - app_file "lib/tasks/test.rake", <<-RUBY - task 'db:test:load' do - puts "Hello World" - end - RUBY - create_test_file - assert_match "Hello World", run_test_command - end - def test_run_models create_test_file :models, 'foo' create_test_file :models, 'bar' |