From 3873b1eb39a2070937dc62ac47f8b96df54a72fc Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 15 Aug 2023 10:00:54 -0700 Subject: Resync YARP --- test/ruby_api_test.rb | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/ruby_api_test.rb (limited to 'test/ruby_api_test.rb') diff --git a/test/ruby_api_test.rb b/test/ruby_api_test.rb deleted file mode 100644 index ea18fbb35a..0000000000 --- a/test/ruby_api_test.rb +++ /dev/null @@ -1,22 +0,0 @@ -# frozen_string_literal: true - -require "yarp_test_helper" - -class YARPRubyAPITest < Test::Unit::TestCase - def test_ruby_api - filepath = __FILE__ - source = File.read(filepath, binmode: true, external_encoding: Encoding::UTF_8) - - assert_equal YARP.lex(source, filepath).value, YARP.lex_file(filepath).value - - assert_equal YARP.dump(source, filepath), YARP.dump_file(filepath) - - serialized = YARP.dump(source, filepath) - ast1 = YARP.load(source, serialized).value - ast2 = YARP.parse(source, filepath).value - ast3 = YARP.parse_file(filepath).value - - assert_equal_nodes ast1, ast2 - assert_equal_nodes ast2, ast3 - end -end -- cgit v1.2.3