module RSpec::Helpers::ClassMethods

Public Instance Methods

include_contexts(*contexts) click to toggle source

Include multiple contexts.


# File lib/rspec/helpers.rb, line 53
def include_contexts(*contexts)
  contexts.map do |val|
    public_send(:include_context, val)
  end
end