Added final count check to browser tests, too.
This commit is contained in:
parent
2a29312164
commit
5c160ba726
1 changed files with 8 additions and 0 deletions
|
@ -83,5 +83,13 @@ class ZendeskImportBrowserTest < TestCase
|
|||
value: 'login',
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue