mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
11 lines
201 B
Ruby
11 lines
201 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rake/testtask'
|
|
require_relative 'config/application'
|
|
|
|
Rails.application.load_tasks
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.test_files = FileList['app/**/*_tests.rb']
|
|
end
|