swagger-api/swagger-codegen

[Ruby] Rakefile for running multiple test cases

开放

#3,634 创建于 2016年8月24日

 (4 条评论) (0 个反应) (0 位负责人)HTML (5,474 个派生)batch import
Client: RubyEnhancement: Generalhelp wanted

仓库指标

星标
 (12,701 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Description

I would like to run multiple test cases written using minitest; it would be good to have Rakefile generated for the same to that rake task can be incorporated to run all the test cases.

# file: Rakefile
require 'rake/testtask'

Rake::TestTask.new do |task|
  task.libs << %w(test lib)
  task.pattern = 'test/test_*.rb'
end

task :default => :test
Swagger-codegen version

Version 2.1.5

贡献者指南