mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 06:25:31 +02:00
11 lines
178 B
Ruby
11 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "test_helper"
|
|
|
|
module Prism
|
|
class VersionTest < TestCase
|
|
def test_version_is_set
|
|
refute_nil VERSION
|
|
end
|
|
end
|
|
end
|