From f3c379b8dba12833b830d5113f7bdb1d0bc11fcb Mon Sep 17 00:00:00 2001 From: jgen Date: Wed, 19 Feb 2014 18:36:38 -0500 Subject: [PATCH] Rename the file. --- .travis.yml | 2 +- ext/alias_editor/test.php | 5 +---- tests/{all_tests.php => test_all.php} | 0 3 files changed, 2 insertions(+), 5 deletions(-) rename tests/{all_tests.php => test_all.php} (100%) diff --git a/.travis.yml b/.travis.yml index 10a860a5..85ad1b94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ install: script: - php tests/test_install.php -d $DB -h "http://127.0.0.1/" - - php tests/all_tests.php -h "http://127.0.0.1/" + - php tests/test_all.php -h "http://127.0.0.1/" # If a failure occured then dump out a bunch of logs for debugging purposes. after_failure: diff --git a/ext/alias_editor/test.php b/ext/alias_editor/test.php index a69e5706..c67c52cf 100644 --- a/ext/alias_editor/test.php +++ b/ext/alias_editor/test.php @@ -19,12 +19,9 @@ class AliasEditorTest extends ShimmieWebTestCase { $this->set_field('oldtag', "test1"); $this->set_field('newtag', "test2"); $this->click("Add"); - //$this->assertResponse(302); $this->get_page('alias/list'); - if (!$this->assert_text("test1")) { - $this->showSource(); - } + $this->assert_text("test1"); $this->get_page("alias/export/aliases.csv"); $this->assert_text("test1,test2"); diff --git a/tests/all_tests.php b/tests/test_all.php similarity index 100% rename from tests/all_tests.php rename to tests/test_all.php