diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-05 17:30:17 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-05 17:30:17 -0800 |
commit | 8f309e31057e1b26fefedb199ab0526126fb1fe4 (patch) | |
tree | af7540312827de9eb642782cea566c9694db249c /railties/test/application/rake | |
parent | b8d8c50785fdad21a524fe5149621f91c97583cd (diff) | |
download | rails-8f309e31057e1b26fefedb199ab0526126fb1fe4.tar.gz rails-8f309e31057e1b26fefedb199ab0526126fb1fe4.tar.bz2 rails-8f309e31057e1b26fefedb199ab0526126fb1fe4.zip |
convert railties to use AS::TestCase
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/migrations_test.rb | 2 | ||||
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/rake/migrations_test.rb b/railties/test/application/rake/migrations_test.rb index 7982c42d8f..301e516192 100644 --- a/railties/test/application/rake/migrations_test.rb +++ b/railties/test/application/rake/migrations_test.rb @@ -2,7 +2,7 @@ require "isolation/abstract_unit" module ApplicationTests module RakeTests - class RakeMigrationsTest < Test::Unit::TestCase + class RakeMigrationsTest < ActiveSupport::TestCase def setup build_app boot_rails diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index f4e74deb83..e121d6f1ab 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -2,7 +2,7 @@ require "isolation/abstract_unit" module ApplicationTests module RakeTests - class RakeNotesTest < Test::Unit::TestCase + class RakeNotesTest < ActiveSupport::TestCase def setup build_app require "rails/all" |