Skip to content
Snippets Groups Projects
Commit abb651cc authored by Chris Leppanen's avatar Chris Leppanen
Browse files

Get FeedsMapperFileTestCase tests to pass.

parent 35d60972
No related branches found
No related tags found
No related merge requests found
...@@ -469,7 +469,7 @@ class FeedsWebTestCase extends DrupalWebTestCase { ...@@ -469,7 +469,7 @@ class FeedsWebTestCase extends DrupalWebTestCase {
$local_archive = system_retrieve_file($url, $local_archive, FALSE, FILE_EXISTS_REPLACE); $local_archive = system_retrieve_file($url, $local_archive, FALSE, FILE_EXISTS_REPLACE);
} }
if (!file_exists($library_dir)) { if (!file_exists($simplepie_library_dir)) {
// Extract the files. // Extract the files.
$archiver = archiver_get_archiver($local_archive); $archiver = archiver_get_archiver($local_archive);
$archiver->extract($library_dir); $archiver->extract($library_dir);
...@@ -484,7 +484,8 @@ class FeedsWebTestCase extends DrupalWebTestCase { ...@@ -484,7 +484,8 @@ class FeedsWebTestCase extends DrupalWebTestCase {
// End single threaded code. // End single threaded code.
// Verify that files were successfully extracted. // Verify that files were successfully extracted.
$this->assertTrue(file_exists($simplepie_library_dir . '/simplepie.inc'), t('simpletest.inc found in @library_dir.', array('library_dir' => $library_dir))); $file = $simplepie_library_dir . '/simplepie.inc';
$this->assertTrue(file_exists($file), t('@file found.', array('@file' => $file)));
// Set the simpletest library directory. // Set the simpletest library directory.
variable_set('feeds_library_dir', $library_dir); variable_set('feeds_library_dir', $library_dir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment