Browse Source

Added article count test.

Martin Edenhofer 10 years ago
parent
commit
a96d288d48
1 changed files with 1 additions and 0 deletions
  1. 1 0
      test/integration/otrs_import_test.rb

+ 1 - 0
test/integration/otrs_import_test.rb

@@ -36,6 +36,7 @@ class OtrsImportTest < ActiveSupport::TestCase
   # check count of imported items
   test 'check counts' do
     assert_equal( 603, Ticket.count, 'tickets' )
+    assert_equal( 3182, Ticket::Article.count, 'ticket articles' )
     assert_equal( 10, Ticket::State.count, 'ticket states' )
     assert_equal( 24, Group.count, 'groups' )
   end