Specify exclusion of fixture and performance separately

This commit is contained in:
Sarah Mei 2011-11-30 22:14:24 -08:00
parent 993b410d95
commit 03f33f9313

View file

@ -14,7 +14,7 @@ begin
desc "Run all specs in spec directory (excluding those tagged performance)"
RSpec::Core::RakeTask.new(:spec => :'spec:fixtures') do |t|
t.rspec_opts = ['--tag ~fixture ~performance']
t.rspec_opts = ['--tag ~fixture --tag ~performance']
end
desc "Run all specs that generate fixtures for rspec or jasmine"