Added final count check to browser tests, too.

This commit is contained in:
Thorsten Eckel 2016-02-02 15:48:57 +01:00
parent 2a29312164
commit 5c160ba726

View file

@ -83,5 +83,13 @@ class ZendeskImportBrowserTest < TestCase
value: 'login', value: 'login',
timeout: 300, timeout: 300,
) )
assert_equal( 143, User.count, 'users' )
assert_equal( 3, Group.count, 'groups' )
assert_equal( 5, Role.count, 'roles' )
assert_equal( 2, Organization.count, 'organizations' )
assert_equal( 144, Ticket.count, 'tickets' )
assert_equal( 151, Ticket::Article.count, 'ticket articles' )
assert_equal( 2, Store.count, 'ticket article attachments' )
end end
end end