~singpolyma/dhall-ruby

ref: c979c0c40060439b06d039a133a38d2c564123b7 dhall-ruby/test/test_as_json.rb -rw-r--r-- 654 bytes
c979c0c4Stephen Paul Weber Working parser 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require "minitest/autorun"
require "pathname"
require "cbor"

require "dhall/ast"
require "dhall/binary"

class TestAsJson < Minitest::Test
	DIRPATH = Pathname.new(File.dirname(__FILE__))
	TESTS = DIRPATH + "../dhall-lang/tests/**/success/"

	Pathname.glob(TESTS + "**/*.dhallb").each do |path|
		test = path.relative_path_from(TESTS).to_s.sub(/.dhallb$/, "")
		define_method("test_#{test}") do
			skip "double as_json" if test =~ /doubleB/
			skip "deprecated syntax" if test =~ /collectionImportTypeB|annotationsB/
			assert_equal(
				CBOR.decode(path.read),
				Dhall.from_binary(path.read).as_json
			)
		end
	end
end