Sha256: 89e222dd558d64f08f4c20af24100f17a8e0bb58c40ac46fdbe8fda7043c9330
Contents?: true
Size: 676 Bytes
Versions: 19
Compression:
Stored size: 676 Bytes
Contents
Autotest.add_hook :initialize do |at| ignore = %w[ .git burn www log plugins script tasks bin CHANGELOG FAQ MIT-LICENSE PERFORMANCE QUICKLINKS README ] unless ENV['AUTOTEST'] == 'integration' ignore << 'spec/integration' end ignore.each do |exception| at.add_exception(exception) end at.clear_mappings at.add_mapping(%r{^spec/.+_spec\.rb$}) do |filename,_| filename end at.add_mapping(%r{^lib/data_mapper/(.+)\.rb$}) do |_,match| [ "spec/unit/#{match[1]}_spec.rb" ] + at.files_matching(%r{^spec/integration/.+_spec\.rb$}) end at.add_mapping(%r{^spec/spec_helper\.rb$}) do at.files_matching(%r{^spec/.+_spec\.rb$}) end end
Version data entries
19 entries across 19 versions & 5 rubygems