Module: RSpec::Rails::ModuleInclusion

Instance Method Summary collapse

Instance Method Details

#include_self_when_dir_matches(*path_parts) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/rspec/rails/module_inclusion.rb', line 3

def include_self_when_dir_matches(*path_parts)
  lambda do |c|
    c.include self, :example_group => {
      :file_path => Regexp.compile(path_parts.join('[\\\/]'))
    }
  end
end