diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-11 11:12:53 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-11 11:12:53 -0500 |
commit | 7d5c447d9c4ebebd921a90810ff7547f8e40ea38 (patch) | |
tree | 19ccf05193f98dea2229d33fbd894c0dfb618da7 /actionmailer/test | |
parent | feb08984ea5517db5780a88584929feac1cafb59 (diff) | |
download | rails-7d5c447d9c4ebebd921a90810ff7547f8e40ea38.tar.gz rails-7d5c447d9c4ebebd921a90810ff7547f8e40ea38.tar.bz2 rails-7d5c447d9c4ebebd921a90810ff7547f8e40ea38.zip |
Stubba is included in Mocha already
Diffstat (limited to 'actionmailer/test')
-rw-r--r-- | actionmailer/test/abstract_unit.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionmailer/test/abstract_unit.rb b/actionmailer/test/abstract_unit.rb index 9b7a4661b6..11058a770d 100644 --- a/actionmailer/test/abstract_unit.rb +++ b/actionmailer/test/abstract_unit.rb @@ -32,8 +32,7 @@ end # Wrap tests that use Mocha and skip if unavailable. def uses_mocha(test_name) - gem 'mocha', ">=0.5" - require 'stubba' + gem 'mocha', ">=0.9.0" yield rescue Gem::LoadError $stderr.puts "Skipping #{test_name} tests (Mocha >= 0.5 is required). `gem install mocha` and try again." |