~singpolyma/dhall-ruby

ref: 1868c94c899941540d8284e2cfad4ad7ecd61730 dhall-ruby/test/test_suite.rb -rw-r--r-- 306 bytes
1868c94cStephen Paul Weber Update dhall-lang 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require "simplecov"
SimpleCov.start do
	add_filter(/^\/\.?gems?\//)
end

require "pathname"

DIRPATH = Pathname.new(File.dirname(__FILE__))
Pathname.glob(DIRPATH + "test_*.rb").each do |path|
	next if path.basename.to_s == "test_suite.rb"
	require_relative path.basename
end