Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRakefile
More file actions
Latest commit
17 lines (14 loc) · 359 Bytes
/
Copy pathRakefile
File metadata and controls
17 lines (14 loc) · 359 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require'rake'
require'rspec/core/rake_task'
task:spec=>'test:spec'
task:test=>'test:all'
task:default=>:spec
namespace:testdo
RSpec::Core::RakeTask.new(:spec)do |t|
t.pattern='spec/*/*_spec.rb'
end
RSpec::Core::RakeTask.new(:exclude_slow)do |t|
t.pattern='spec/*/*_spec.rb'
t.rspec_opts='--tag ~slow'
end
end