mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 06:25:31 +02:00

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