ruby/test/yarp/version_test.rb
Jemma Issroff cc7f765f2c [Feature #19741] Sync all files in yarp
This commit is the initial sync of all files from ruby/yarp
into ruby/ruby. Notably, it does the following:

* Sync all ruby/yarp/lib/ files to ruby/ruby/lib/yarp
* Sync all ruby/yarp/src/ files to ruby/ruby/yarp/
* Sync all ruby/yarp/test/ files to ruby/ruby/test/yarp
2023-06-21 11:25:39 -07:00

9 lines
165 B
Ruby

# frozen_string_literal: true
require "yarp_test_helper"
class VersionTest < Test::Unit::TestCase
def test_version_is_set
refute_nil YARP::VERSION
end
end