mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
removes travis specific files, rake spec
works fine
This commit is contained in:
parent
362d51d3ff
commit
b5c33561b5
2 changed files with 0 additions and 17 deletions
4
Rakefile
4
Rakefile
|
@ -25,10 +25,6 @@ RSpec::Core::RakeTask.new(:spec) do |spec|
|
|||
spec.pattern = FileList['spec/**/*_spec.rb']
|
||||
end
|
||||
|
||||
RSpec::Core::RakeTask.new(:travis) do |spec|
|
||||
spec.pattern = FileList['spec/travis.rb']
|
||||
end
|
||||
|
||||
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
||||
spec.pattern = 'spec/**/*_spec.rb'
|
||||
spec.rcov = true
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
generic_specs = Dir[
|
||||
'spec/base_spec.rb',
|
||||
'spec/configuration_spec.rb',
|
||||
'spec/database_cleaner/generic/**/*_spec.rb'
|
||||
]
|
||||
|
||||
active_record_specs = Dir[
|
||||
'spec/database_cleaner/active_record/**/*_spec.rb'
|
||||
]
|
||||
|
||||
(generic_specs + active_record_specs).each {|s| require s}
|
Loading…
Reference in a new issue