assets/samples/sample_activity_test.rb in ruboto-0.10.2 vs assets/samples/sample_activity_test.rb in ruboto-0.11.0.rc.0
- old
+ new
@@ -9,13 +9,13 @@
end
assert @text_view
end
test('initial setup') do |activity|
- assert_equal "What hath Matz wrought?", @text_view.text
+ assert_equal 'What hath Matz wrought?', @text_view.text
end
test('button changes text') do |activity|
button = activity.findViewById(43)
button.performClick
- assert_equal "What hath Matz wrought!", @text_view.text
+ assert_equal 'What hath Matz wrought!', @text_view.text
end