File tree Expand file tree Collapse file tree 10 files changed +34
-0
lines changed Expand file tree Collapse file tree 10 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -23,3 +23,4 @@ __pycache__/
2323* .bak
2424* .log
2525sorbet
26+ coverage
Original file line number Diff line number Diff line change @@ -36,3 +36,8 @@ group :development do
3636 gem "spoom"
3737 gem "tapioca" , require : false
3838end
39+
40+ group :development , :test do
41+ gem "minitest"
42+ gem "simplecov"
43+ end
Original file line number Diff line number Diff line change 6464 irb (~> 1.10 )
6565 reline (>= 0.3.8 )
6666 diff-lcs (1.6.0 )
67+ docile (1.4.1 )
6768 drb (2.2.1 )
6869 erubi (1.13.1 )
6970 hana (1.3.7 )
176177 ruby-rc4 (0.1.5 )
177178 rubyzip (2.4.1 )
178179 securerandom (0.4.1 )
180+ simplecov (0.22.0 )
181+ docile (~> 1.1 )
182+ simplecov-html (~> 0.11 )
183+ simplecov_json_formatter (~> 0.1 )
184+ simplecov-html (0.13.1 )
185+ simplecov_json_formatter (0.1.4 )
179186 simpleidn (0.2.3 )
180187 solargraph (0.52.0 )
181188 backport (~> 1.2 )
@@ -267,6 +274,7 @@ DEPENDENCIES
267274 ruby-prof
268275 ruby-prof-flamegraph !
269276 ruby-progressbar (~> 1.13 )
277+ simplecov
270278 solargraph
271279 sorbet
272280 sorbet-runtime
Original file line number Diff line number Diff line change 1+ require_relative '../../test/test_helper'
12require "minitest/autorun"
23
34$root ||= ( Pathname . new ( __FILE__ ) / ".." / ".." / ".." / ".." ) . realpath
Original file line number Diff line number Diff line change 1+ require_relative '../../test/test_helper'
12require "minitest/autorun"
23
34$root ||= ( Pathname . new ( __FILE__ ) / ".." / ".." / ".." / ".." ) . realpath
Original file line number Diff line number Diff line change 1+ require_relative '../../test/test_helper'
12require "minitest/autorun"
23
34$root ||= ( Pathname . new ( __FILE__ ) / ".." / ".." / ".." / ".." ) . realpath
Original file line number Diff line number Diff line change 1+ require_relative '../../test/test_helper'
12require "minitest/autorun"
23
34$root ||= ( Pathname . new ( __FILE__ ) / ".." / ".." / ".." / ".." ) . realpath
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ require_relative 'test_helper'
34require "English"
45require "minitest/autorun"
56require "backend_helpers"
Original file line number Diff line number Diff line change 1+ require 'simplecov'
2+
3+ SimpleCov . start do
4+ enable_coverage :branch
5+
6+ add_group 'Arch Obj Models' , 'arch_obj_models'
7+ add_group 'IDL Core' , 'idl'
8+ add_group 'IDL Regression Tests' , 'idl/tests'
9+ add_group 'Top-level Tests' , 'test'
10+ end
11+
12+ puts "[SimpleCov] Coverage started."
13+
14+ require 'minitest/autorun'
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ require_relative 'test_helper'
34require "English"
45require "fileutils"
56require "minitest/autorun"
You can’t perform that action at this time.
0 commit comments