Added table tests.

This commit is contained in:
Martin Edenhofer 2014-06-14 13:55:38 +02:00
parent e417001822
commit f12519364d

View file

@ -46,4 +46,26 @@ class AAbUnitTest < TestCase
] ]
browser_single_test(tests) browser_single_test(tests)
end end
def test_table
tests = [
{
:name => 'start',
:instance => browser_instance,
:url => browser_url + '/tests-table',
:action => [
{
:execute => 'wait',
:value => 8,
},
{
:execute => 'match',
:css => '.result .failed',
:value => '0',
:match_result => true,
},
],
},
]
browser_single_test(tests)
end
end end