summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/FeedFixture.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Integration/Fixtures/FeedFixture.php')
-rw-r--r--tests/Integration/Fixtures/FeedFixture.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/Integration/Fixtures/FeedFixture.php b/tests/Integration/Fixtures/FeedFixture.php
deleted file mode 100644
index 0c1e31af9..000000000
--- a/tests/Integration/Fixtures/FeedFixture.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-/**
- * 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 2015
- */
-
-
-namespace OCA\News\Tests\Integration\Fixtures;
-
-use OCA\News\Db\Feed;
-
-class FeedFixture extends Feed
-{
-
- use Fixture;
-
- public function __construct(array $defaults = [])
- {
- parent::__construct();
- $defaults = array_merge(
- [
- 'userId' => 'test',
- 'urlHash' => 'urlHash',
- 'url' => 'http://the.url.com',
- 'title' => 'title',
- 'faviconLink' => 'http://feed.com/favicon.ico',
- 'added' => 3000,
- 'folderId' => null,
- 'link' => 'http://feed.com/rss',
- 'preventUpdate' => false,
- 'deletedAt' => 0,
- 'articlesPerUpdate' => 40,
- 'httpLastModified' => 10,
- 'httpEtag' => '',
- 'location' => 'http://feed.com/rss',
- 'ordering' => 0,
- 'fullTextEnabled' => false,
- 'pinned' => false,
- 'updateMode' => 0,
- 'updateErrorCount' => 0,
- 'lastUpdateError' => '',
- ],
- $defaults
- );
- unset($defaults['items']);
- $this->fillDefaults($defaults);
- }
-
-}