lib/mocha/integration/mini_test/nothing.rb in mocha-1.6.0 vs lib/mocha/integration/mini_test/nothing.rb in mocha-1.7.0

- old
+ new

@@ -1,18 +1,18 @@ module Mocha module Integration module MiniTest module Nothing - def self.applicable_to?(test_unit_version, ruby_version = nil) + def self.applicable_to?(_test_unit_version, _ruby_version = nil) true end def self.description - "nothing (no MiniTest integration available)" + 'nothing (no MiniTest integration available)' end - def self.included(mod) - raise "No MiniTest integration available" + def self.included(_mod) + raise 'No MiniTest integration available' end end end end end