public
Description: Auto-generate RSpec view specs by interrogating your existing views.
Homepage: http://hashrocket.com/
Clone URL: git://github.com/hashrocket/view_specify.git
view_specify / Rakefile
100644 13 lines (10 sloc) 0.241 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rake'
require 'rake/testtask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the view_specify plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end