mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 11:02:30 +01:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new(test: :environment) do |t|
|
|
t.libs.push('lib')
|
|
t.test_files = FileList['spec/*_spec.rb']
|
|
t.ruby_opts += ['-W0']
|
|
end
|