Sha256: 2b9d5f8ab1a4dcdb24850ad9b61efe49b610f12b13c26e66b2e8d992a7968e60
Contents?: true
Size: 293 Bytes
Versions: 3
Compression:
Stored size: 293 Bytes
Contents
%w[unit functional integration performance].each do |type| desc "run #{type} tests" task "test:#{type}" do Dir.glob "./test/#{type}/*_test.rb" do |f| require f end end end desc "run all tests" task "test" do Dir.glob "./test/**/*_test.rb" do |f| require f end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simba-0.8.0 | template/lib/tasks/test.rake |
simba-0.0.5 | lib/simba/base_app/lib/tasks/test.rake |
simba-0.0.4 | lib/simba/base_app/lib/tasks/test.rake |