Sha256: a27bbdf121ffa36d86d72b0e7e11db21dd8d2b3164eee2be614cf6a8513e2839
Contents?: true
Size: 1.76 KB
Versions: 6
Compression:
Stored size: 1.76 KB
Contents
# Maybe I should be my own gem? require 'rspec/core' require 'rspec/expectations' require 'surrogate' class Surrogate module RSpec class << self def rspec_mocks_loaded? return @mocks_loaded if @alrady_checked_mocks @alrady_checked_mocks = true require 'rspec/mocks' # can't figure out a way to do this lazily @mocks_loaded = true rescue LoadError @mocks_loaded = false end def rspec_mocks_loaded=(bool) @alrady_checked_mocks = true @mocks_loaded = bool end end module Matchers def have_been_told_to(method_name) VerbMatcher.new method_name end def told_to(method_name) VerbMatcher.new method_name end def have_been_asked_if(method_name) PredicateMatcher.new method_name end def asked_if(method_name) PredicateMatcher.new method_name end def have_been_asked_for_its(method_name) NounMatcher.new method_name end def asked_for(method_name) NounMatcher.new method_name end def have_been_initialized_with(*initialization_args, &block) InitializationMatcher.new *initialization_args, &block end def initialized_with(*initialization_args, &block) InitializationMatcher.new *initialization_args, &block end end end Endower.add_hook do |klass| klass.class_eval do alias was should alias was_not should_not end end end require 'surrogate/rspec/substitute_for' require 'surrogate/rspec/predicate_matcher' require 'surrogate/rspec/noun_matcher' require 'surrogate/rspec/initialization_matcher' require 'surrogate/rspec/verb_matcher' RSpec.configure do |config| config.include Surrogate::RSpec::Matchers end
Version data entries
6 entries across 6 versions & 1 rubygems