Method: RWebUnit::Assert#assert_text_not_present_in_table
- Defined in:
- lib/rwebunit/assert.rb
#assert_text_not_present_in_table(table_id, text, options = { :just_plain_text => false }) ⇒ Object Also known as: assert_text_not_in_table
319 320 321 |
# File 'lib/rwebunit/assert.rb', line 319 def assert_text_not_present_in_table(table_id, text, = { :just_plain_text => false }) assert_not(table_source(table_id, ).include?(text), "the text #{text} not found in table #{table_id}") end |