search for: spec_task

Displaying 1 result from an estimated 1 matches for "spec_task".

Did you mean: spectask
2008 Jul 09
2
Can I get RSpec NOT to abort rake on failing specs?
...ying to fix this to no avail. I notice that SpecTask has an attribute accessor fail_on_error which looks like it SHOULD prevent terminating rake if it''s set to false. So I tried that and it doesn''t seem to work. Here''s our projects lib/tasks/spec.rake, any ideas? def spec_tasks %w{spec:controllers spec:models spec:helpers spec:views spec:lib} + spec_subdirs.map {|t| "spec:#{t}"} end begin require RAILS_ROOT + ''/vendor/plugins/rspec/lib/spec/rake/spectask'' namespace :spec do spec_subdirs.each do |task| next if Rake::Task.task_de...