Sha256: 3723e1e76505325ad2849ab3c733b7b2e3907052e4f6dab259604ce36f3a6d4c
Contents?: true
Size: 505 Bytes
Versions: 22
Compression:
Stored size: 505 Bytes
Contents
activity Java::org.ruboto.test_app.OptionMenuActivity setup do |activity| start = Time.now loop do @text_view = activity.findViewById(42) break if @text_view || (Time.now - start > 60) sleep 1 end assert @text_view end test('option_menu changes text') do |activity| assert_equal 'What hath Matz wrought?', @text_view.text activity.window.performPanelIdentifierAction(android.view.Window::FEATURE_OPTIONS_PANEL, 0, 0) assert_equal 'What hath Matz wrought!', @text_view.text end
Version data entries
22 entries across 22 versions & 1 rubygems