summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/test/unit/test_csv_import_quote.js
blob: 67b469bac50e11913bc16118b00917dba569efd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Tests importing quoted csv address books.
 */
function run_test() {
  // Due to the import code using nsIAbManager off the main thread, we need
  // to ensure that it is initialized before we start the main test.
  MailServices.ab;

  let file = do_get_file("resources/quote.csv");
  new AbImportHelper(file, "csv", "quote", "quote_csv").beginImport();
}