Sha256: 2176cb206f22e2b19ed2e6ee47826177558c4c11513b92f08cc06d757cae25bf
Contents?: true
Size: 286 Bytes
Versions: 4
Compression:
Stored size: 286 Bytes
Contents
# auto-tag all integration specs with :integration => true module IntegrationSpecs def self.included(klass) klass.metadata[:integration] = true end end RSpec.configure do |config| config.include IntegrationSpecs, :example_group => { :file_path => %r{spec/integration} } end
Version data entries
4 entries across 4 versions & 3 rubygems