public function FeedsWebTestCase::show in Feeds 7
Debug utility. Shows current screen.
File
- tests/
feeds.test.inc, line 20 - Common functionality for all Feeds tests.
Class
- FeedsWebTestCase
- Test basic Data API functionality.
Code
public function show($path = NULL) {
if ($path !== NULL) {
$this
->drupalGet($path);
}
// Use error, this will make sure we don't forget accidental calls to show()
// in our tests.
$this
->error($this->content);
}