changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1require 'rake'
2require 'spec/rake/spectask'
3
4desc "Generate HTML report for failing examples"
5Spec::Rake::SpecTask.new('failing_examples_with_html') do |t|
6 t.spec_files = FileList['failing_examples/**/*.rb']
7 t.spec_opts = ["--format", "html:../doc/output/documentation/tools/failing_examples.html", "--diff"]
8 t.fail_on_error = false
9end