ruby/test/yarp/version_test.rb
Kevin Newton 439f069b4b [ruby/yarp] Move tests from test/* to test/yarp/* to match CRuby
This should make it easier on the sync to determine what changed
and hopefully result in fewer merge conflicts that have to be
manually resolved.

17d82afbfc
2023-08-25 21:15:49 +00:00

9 lines
169 B
Ruby

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