lib/honeydew/device_matchers.rb in honeydew-0.22.0 vs lib/honeydew/device_matchers.rb in honeydew-0.23.0

- old
+ new

@@ -14,9 +14,13 @@ def has_textview_text?(text) perform_assertion :is_text_present, :text => text, :type => 'TextView' end + def has_text_disappear?(text) + perform_assertion :is_text_gone, :text => text, :type => 'TextView' + end + def has_textview_with_text_and_description?(text, description) perform_assertion :is_text_present, :text => text, :description => description, :type => 'TextView' end def has_button?(button_text)