You are here

public function FeedsExamplesFeedTestCase::setUp in Feeds 7

Same name and namespace in other branches
  1. 8.2 feeds_news/feeds_news.test \FeedsExamplesFeedTestCase::setUp()
  2. 6 feeds_news/feeds_news.test \FeedsExamplesFeedTestCase::setUp()
  3. 7.2 feeds_news/feeds_news.test \FeedsExamplesFeedTestCase::setUp()

Set up test.

Overrides DrupalWebTestCase::setUp

File

feeds_news/feeds_news.test, line 19
Tests for feeds_news feature.

Class

FeedsExamplesFeedTestCase
Test Feed configuration.

Code

public function setUp() {
  parent::setUp('feeds', 'feeds_ui', 'ctools', 'job_scheduler', 'features', 'feeds_news');
  $this
    ->drupalLogin($this
    ->drupalCreateUser(array(
    'administer feeds',
    'administer nodes',
  )));
}