We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de8fcc commit 1c16d0bCopy full SHA for 1c16d0b
test/console/control_flow_commands_test.rb
@@ -21,7 +21,9 @@ def program
21
10|
22
11| s = Student.new("John")
23
12| s.name
24
- 13| "foo"
+ 13| puts "foo"
25
+ 14| puts "bar"
26
+ 15| "baz"
27
RUBY
28
end
29
@@ -84,6 +86,8 @@ def test_next_with_number_goes_to_the_next_nth_line
84
86
assert_line_num 11
85
87
type 'n 2'
88
assert_line_num 13
89
+ type 'n 2'
90
+ assert_line_num 15
91
type 'quit'
92
type 'y'
93
0 commit comments