From 0a219ef44af0cfb126799a7109c2e658172d7819 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Thu, 10 Aug 2023 15:43:11 +0900 Subject: [PATCH] jruby: Add StringIO::VERSION (#59) Fixes GH-57 --- test/stringio/test_stringio.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/stringio/test_stringio.rb b/test/stringio/test_stringio.rb index 246f107d05..d2d96c5719 100644 --- a/test/stringio/test_stringio.rb +++ b/test/stringio/test_stringio.rb @@ -14,6 +14,10 @@ class TestStringIO < Test::Unit::TestCase include TestEOF::Seek + def test_version + assert_kind_of(String, StringIO::VERSION) + end + def test_initialize assert_kind_of StringIO, StringIO.new assert_kind_of StringIO, StringIO.new('str')