module Spec::Example::ExampleGroupMethods

def it_should_behave_like(*shared_example_groups)

Use this to pull in examples from shared example groups.
def it_should_behave_like(*shared_example_groups)
  shared_example_groups.each do |group|
    include_shared_example_group(group)
  end
end