protected function FeedsMapperNodeSummaryTestCase::assertNodeTeaserValues in Feeds 7.2
Checks the frontpage for teaser values.
1 call to FeedsMapperNodeSummaryTestCase::assertNodeTeaserValues()
- FeedsMapperNodeSummaryTestCase::test in tests/
feeds_mapper_summary.test - Tests importing CSV files for text fields with summary.
File
- tests/
feeds_mapper_summary.test, line 206 - Contains FeedsMapperNodeSummaryTestCase.
Class
- FeedsMapperNodeSummaryTestCase
- Test case for mapping to node summary.
Code
protected function assertNodeTeaserValues() {
$this
->drupalGet('');
$this
->assertText('Lorem ipsum summary');
$this
->assertNoText('Lorem ipsum body');
$this
->assertText('Ut wisi enim ad minim veniam body');
}