diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-19 19:08:13 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-19 19:08:13 -0700 |
commit | f945d157f79af44e2096fcbc9aaa22e410919dca (patch) | |
tree | 0252d0cd687ccc2cc1b37f2fd905eb86544d12b5 /railties/test/application/rake | |
parent | 265f13495fb326bd2e6a5bc9cae7e297e42893d0 (diff) | |
download | rails-f945d157f79af44e2096fcbc9aaa22e410919dca.tar.gz rails-f945d157f79af44e2096fcbc9aaa22e410919dca.tar.bz2 rails-f945d157f79af44e2096fcbc9aaa22e410919dca.zip |
run the notes tests in isolation
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index 3f4db77897..27de75b63b 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -3,12 +3,16 @@ require "isolation/abstract_unit" module ApplicationTests module RakeTests class RakeNotesTest < ActiveSupport::TestCase + include ActiveSupport::Testing::Isolation + def setup build_app require "rails/all" + super end def teardown + super teardown_app end |