[ruby/irb] Deal with different screen sizes

https://github.com/ruby/irb/commit/7118b3322f
This commit is contained in:
Nobuyoshi Nakada 2021-05-08 15:22:02 +09:00 коммит произвёл git
Родитель de96ae9b71
Коммит c7601fb9ed
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -407,10 +407,10 @@ module TestIRB
end end
assert_empty err assert_empty err
assert_match(/^instance variables:\s+@a\n/m, out) assert_match(/^instance variables:\s+@a\n/m, out)
assert_match(/C#methods: m1\n/m, out) assert_match(/C#methods:\s+m1\n/m, out)
assert_match(/M#methods: m2\n/m, out) assert_match(/M#methods:\s+m2\n/m, out)
assert_match(/M2#methods: m3\n/m, out) assert_match(/M2#methods:\s+m3\n/m, out)
assert_match(/C.methods: m4\n/m, out) assert_match(/C.methods:\s+m4\n/m, out)
end end
def test_show_source def test_show_source