Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / activesupport / lib / active_support / testing / default.rb
blobd97a610c7941e192e4bd2b6ad024542b195e575e
1 module ActiveSupport
2   module Testing
3     module Default
4       def run(*args)
5         #method_name appears to be a symbol on 1.8.4 and a string on 1.8.6
6         return if @method_name.to_s == "default_test"
7         super
8       end
9     end
10   end
11 end