diff --git a/README.txt b/README.txt index cf7f42c..f908f37 100644 --- a/README.txt +++ b/README.txt @@ -188,6 +188,14 @@ Known problems and workarounds $conf['backup_migrate_data_bytes_per_line'] = 1000; +Development notes +-------------------------------------------------------------------------------- +It is worth noting that some of the tests will fail when ran against nginx, +which is the default web server for some local development systems. As a result, +it is recommended to run tests on a server that uses Apache HTTPd Server instead +of nginx. + + Credits / contact -------------------------------------------------------------------------------- Currently maintained by Alex Andrascu [1], Damien McKenna [2] and diff --git a/tests/BmTestBasics.test b/tests/BmTestBasics.test index 5cf27b9..ab797a9 100644 --- a/tests/BmTestBasics.test +++ b/tests/BmTestBasics.test @@ -61,7 +61,9 @@ public function testQuickBackup() { $items = array('db', 'files', 'archive'); $this->assertSelectOptions('edit-source-id', $items); $this->assertNoOptionsSelected('edit-source-id'); - // This item should have a value "selected", not just the first item. + // This item should have a value "selected", not just the first item. Note: + // if the 'manual' backup option isn't available then the private directory + // path is not set correctly. $items = array('manual', 'download'); $this->assertSelectOptions('edit-destination-id', $items); $this->assertOptionSelected('edit-destination-id', 'download');