summaryrefslogtreecommitdiff
path: root/test/ruby_api_test.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2023-08-13 12:44:32 +0200
committerTakashi Kokubun <takashikkbn@gmail.com>2023-08-16 17:47:32 -0700
commit958ac8d58680782cd839b657f290fe698c044f20 (patch)
treedbd23532b35c954125d7e16e8718e371c3ad10de /test/ruby_api_test.rb
parenta8c70ed2b42013158c1d5ebe11b8ed5aeed8eb45 (diff)
[ruby/yarp] Test all methods of the YARP Ruby API
https://github.com/ruby/yarp/commit/a723f40baf
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8226
Diffstat (limited to 'test/ruby_api_test.rb')
-rw-r--r--test/ruby_api_test.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/ruby_api_test.rb b/test/ruby_api_test.rb
new file mode 100644
index 0000000000..ea18fbb35a
--- /dev/null
+++ b/test/ruby_api_test.rb
@@ -0,0 +1,22 @@
+# 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