Sha256: 69a9ba17d9cac514eebba4d88e2755ea7c544c1730c2bca59fd9f1b4bd8bca73
Contents?: true
Size: 439 Bytes
Versions: 37
Compression:
Stored size: 439 Bytes
Contents
activity org.ruboto.test_app.PsychActivity 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('psych_encode_decode') do |activity| assert_equal 'foo', activity.find_view_by_id(42).text.to_s if RUBY_VERSION >= '1.9' assert_equal "--- foo\n", activity.find_view_by_id(43).text.to_s end end
Version data entries
37 entries across 37 versions & 1 rubygems