mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
11 lines
184 B
Ruby
11 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "test_helper"
|
|
|
|
module Prism
|
|
class VersionTest < TestCase
|
|
def test_prism_version_is_set
|
|
refute_nil VERSION
|
|
end
|
|
end
|
|
end
|