1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fixed name conflict between helper classes

This commit is contained in:
Nobuyoshi Nakada 2019-06-28 16:02:03 +09:00
parent 35b7e8eed8
commit 566e6b0546
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
2 changed files with 8 additions and 2 deletions

View file

@ -3,7 +3,10 @@
require "test/unit"
class BreakTest
class TestEmojiBreaks < Test::Unit::TestCase
end
class TestEmojiBreaks::BreakTest
attr_reader :string, :comment, :filename, :line_number, :type, :shortname
def initialize (filename, line_number, data, comment='')

View file

@ -3,7 +3,10 @@
require "test/unit"
class BreakTest
class TestGraphemeBreaksFromFile < Test::Unit::TestCase
end
class TestGraphemeBreaksFromFile::BreakTest
attr_reader :clusters, :string, :comment, :line_number
def initialize (line_number, data, comment)