Skip to content

Commit

Permalink
Deal with different screen sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed May 8, 2021
1 parent 5f63a02 commit 7118b33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/irb/test_cmd.rb
Expand Up @@ -407,10 +407,10 @@ def test_ls
end
assert_empty err
assert_match(/^instance variables:\s+@a\n/m, out)
assert_match(/C#methods: m1\n/m, out)
assert_match(/M#methods: m2\n/m, out)
assert_match(/M2#methods: m3\n/m, out)
assert_match(/C.methods: m4\n/m, out)
assert_match(/C#methods:\s+m1\n/m, out)
assert_match(/M#methods:\s+m2\n/m, out)
assert_match(/M2#methods:\s+m3\n/m, out)
assert_match(/C.methods:\s+m4\n/m, out)
end

def test_show_source
Expand Down

0 comments on commit 7118b33

Please sign in to comment.