Sha256: 97e6f701452012546909714a0be452184f3054a557a9da791792ccc69cc2e1f0
Contents?: true
Size: 800 Bytes
Versions: 12
Compression:
Stored size: 800 Bytes
Contents
module RSpec::Rails module ModuleInclusion # Deprecated as of rspec-rails-2.4 # Will be removed from rspec-rails-3.0 # # This was never intended to be a public API and is no longer needed # internally. As it happens, there are a few blog posts citing its use, so # I'm leaving it here, but deprecated. def include_self_when_dir_matches(*path_parts) instead = <<-INSTEAD RSpec.configure do |c| c.include self, :example_group => { :file_path => /#{path_parts.join('\/')}/ } end INSTEAD lambda do |c| RSpec.deprecate('include_self_when_dir_matches', instead, 'rails-3.0') c.include self, :example_group => { :file_path => Regexp.compile(path_parts.join('[\\\/]')) } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems