Sha256: 25a2d187f972c0e359c238c50acca4ba22bbf3300407703b9ff4008969eeadee
Contents?: true
Size: 1.29 KB
Versions: 4
Compression:
Stored size: 1.29 KB
Contents
module RSpecCandy module Helpers module ItShouldActLike def self.included(by) by.class_eval do # Improves it_should_behave_like in some ways: # - It scopes the reused examples so #let und #subject does not bleed into the reusing example groups # - It allows to parametrize the reused example group by appending a hash argument. # Every key/value pair in the hash will become a #let variable for the reused example group # - You can call it with a block. It will be available to the reused example group as let(:block) def it_should_act_like(shared_example_group, environment = {}, &block) description = "as #{shared_example_group}" description << " (#{environment.inspect})" if environment.present? describe description do environment.each do |name, value| let(name) { value } end let(:block) { block } if block it_should_behave_like(shared_example_group) end end end end case Switcher.rspec_version when 1 Spec::Example::ExampleGroupMethods.send(:include, self) else RSpec::Core::ExampleGroup.singleton_class.send(:include, self) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems