You are here

public function AggregatorTestBase::getAtomSample in Drupal 8

Same name in this branch
  1. 8 core/modules/aggregator/src/Tests/AggregatorTestBase.php \Drupal\aggregator\Tests\AggregatorTestBase::getAtomSample()
  2. 8 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getAtomSample()
Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getAtomSample()

Returns a example Atom feed.

Return value

string Path to the feed.

1 call to AggregatorTestBase::getAtomSample()
FeedParserTest::testAtomSample in core/modules/aggregator/tests/src/Functional/FeedParserTest.php
Tests a feed that uses the Atom format.

File

core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php, line 352

Class

AggregatorTestBase
Defines a base class for testing the Aggregator module.

Namespace

Drupal\Tests\aggregator\Functional

Code

public function getAtomSample() {

  // The content of this sample ATOM feed is based directly off of the
  // example provided in RFC 4287.
  return $GLOBALS['base_url'] . '/' . drupal_get_path('module', 'aggregator') . '/tests/modules/aggregator_test/aggregator_test_atom.xml';
}