1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-11-22 07:42:49 +01:00
Nextcloud-News/js/tests/unit/service/OPMLImporterSpec.js
2016-07-23 21:32:42 +02:00

32 lines
675 B
JavaScript

/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
describe('OPMLParser', function () {
'use strict';
var importer;
beforeEach(module('News', function ($provide) {
$provide.value('BASE_URL', 'base');
$provide.value('ITEM_BATCH_SIZE', 3);
}));
beforeEach(inject(function (OPMLImporter) {
importer = OPMLImporter;
}));
// FIXME: tests missing
it ('should parse the correct amount of feeds and folders', function () {
});
});