We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 405dab3 commit 5223a60Copy full SHA for 5223a60
chapter04/file_test.rb
@@ -5,4 +5,9 @@ def test_read_4th_character
5
contents = File.read('data.txt')
6
assert_equal 'd', contents[3, 1]
7
end
8
+
9
+ def test_read_4th_content_is_2
10
+ contents = File.read('data.txt')
11
+ assert_equal '2', contents[3, 1]
12
+ end
13
0 commit comments