diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 10:32:24 +0000 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 10:32:24 +0000 |
commit | 5b1a1bf5bfc520248285b036672146122dd2a815 (patch) | |
tree | 31d82a9155db6c9e553888da6375bd89fdb122cf /activemodel/Rakefile | |
parent | 93e2d378df5f599e3e48e74932f37e1c679f633e (diff) | |
download | rails-5b1a1bf5bfc520248285b036672146122dd2a815.tar.gz rails-5b1a1bf5bfc520248285b036672146122dd2a815.tar.bz2 rails-5b1a1bf5bfc520248285b036672146122dd2a815.zip |
Make Active Model test suite similar to Active Record
Diffstat (limited to 'activemodel/Rakefile')
-rwxr-xr-x | activemodel/Rakefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activemodel/Rakefile b/activemodel/Rakefile index 4b60f8d682..283380db96 100755 --- a/activemodel/Rakefile +++ b/activemodel/Rakefile @@ -7,9 +7,8 @@ task :default => :test Rake::TestTask.new do |t| t.libs << "test" - t.pattern = 'test/**/*_test.rb' + t.test_files = Dir.glob("test/cases/**/*_test.rb").sort t.verbose = true - t.warning = true end # Generate the RDoc documentation |