mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00

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
9 lines
169 B
Ruby
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
|