Sha256: 0fe2dcfb718c45235b085be4a0ec8141a9400d7aad09a1d87c4d5819e824e274

Contents?: true

Size: 392 Bytes

Versions: 1

Compression:

Stored size: 392 Bytes

Contents

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require_relative 'config/application'
require 'rake/testtask'

Rails.application.load_tasks

Rake::TestTask.new("test:rabl") do |test|
  test.pattern = "test/controllers/**/*_test.rb"
  test.verbose = true
  test.warning = false
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rabl-0.13.1 fixtures/rails5/Rakefile