Sha256: 2d87bdd19785af4acfbaf5096528b26778d3b652959222cccd180b16d727bdf6
Contents?: true
Size: 526 Bytes
Versions: 13
Compression:
Stored size: 526 Bytes
Contents
Rake::TestTask.new(:stories => "db:test:prepare") do |t| t.libs << "test" t.options = "--runner=stories" t.pattern = 'test/integration/**/*_test.rb' t.verbose = false end Rake::Task['stories'].comment = "Run and print the UATs" namespace :stories do Rake::TestTask.new(:pdf => "db:test:prepare") do |t| t.libs << "test" t.options = "--runner=stories-pdf" t.pattern = 'test/integration/**/*_test.rb' t.verbose = false end Rake::Task['stories:pdf'].comment = "Run UATs and produce a nice PDF" end
Version data entries
13 entries across 13 versions & 3 rubygems