1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/lib/shoulda/matchers/independent.rb
Elliot Winkler b695c2f978 Rename DelegateMatcher to DelegateMethodMatcher
Matcher classes are named after the matcher method itself.
2014-08-29 11:57:26 -06:00

11 lines
349 B
Ruby

require 'shoulda/matchers/independent/delegate_method_matcher'
require 'shoulda/matchers/independent/delegate_method_matcher/stubbed_target'
require 'shoulda/matchers/independent/delegate_method_matcher/target_not_defined_error'
module Shoulda
module Matchers
# Matchers for non-Rails-dependent code.
module Independent
end
end
end