~singpolyma/dhall-ruby

ref: 7a3a7bc998acbbeb6859580db2455297d81459c7 dhall-ruby/test/test_binary.rb -rw-r--r-- 660 bytes
7a3a7bc9Stephen Paul Weber Facility to flatten let blocks 3 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
26
27
28
29
30
# frozen_string_literal: true

require "base64"
require "minitest/autorun"
require "pathname"

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

class TestBinary < 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
			assert_kind_of(
				Dhall::Expression,
				Dhall.from_binary(path.binread)
			)
		end
	end

	def test_self_describing_cbor
		assert_equal(
			Dhall::Variable["x"],
			Dhall.from_binary(Base64.decode64("2dn3gmF4AA"))
		)
	end
end