diff --git a/.gitignore b/.gitignore index bc4fe0a..950e56e 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ # ---------------------------------------------------------------------------------------------------------------------- ### Phing # ---------------------------------------------------------------------------------------------------------------------- -/.phing/properties +/phing/properties # ---------------------------------------------------------------------------------------------------------------------- @@ -32,7 +32,7 @@ # ---------------------------------------------------------------------------------------------------------------------- ### Generated databases # ---------------------------------------------------------------------------------------------------------------------- -/.data/tmp +/data/tmp *.sql *.sqlite diff --git a/build.xml b/build.xml index fccc179..d23552d 100644 --- a/build.xml +++ b/build.xml @@ -2,12 +2,12 @@ - + - + - + @@ -18,12 +18,12 @@ - + - + - + - + - + diff --git a/.phing/properties.dist b/phing/properties.dist similarity index 97% rename from .phing/properties.dist rename to phing/properties.dist index e939825..d823a6e 100644 --- a/.phing/properties.dist +++ b/phing/properties.dist @@ -65,7 +65,7 @@ composer.validate = false # System directories # -dir.data = ${project.basedir}/.data +dir.data = ${project.basedir}/data dir.src = ${project.basedir}/src dir.tests = ${project.basedir}/tests @@ -73,7 +73,7 @@ dir.tests = ${project.basedir}/tests # Build directories # -------------------------------------------------------------------------------- -dir.build = ${project.basedir}/.build +dir.build = ${project.basedir}/build dir.reports = ${dir.build}/logs dir.reports.pdepend = ${dir.reports}/pdepend # diff --git a/.phing/tests.xml b/phing/tests.xml similarity index 97% rename from .phing/tests.xml rename to phing/tests.xml index 243cb2e..d705e43 100644 --- a/.phing/tests.xml +++ b/phing/tests.xml @@ -11,12 +11,12 @@ - + - + - + diff --git a/src/Traits/Test/Base/BaseTestCaseTrait.php b/src/Traits/Test/Base/BaseTestCaseTrait.php index a175bbe..330fcd1 100644 --- a/src/Traits/Test/Base/BaseTestCaseTrait.php +++ b/src/Traits/Test/Base/BaseTestCaseTrait.php @@ -32,7 +32,7 @@ trait BaseTestCaseTrait * * @var string */ - private static $testsDataDirPath = '.data/tests'; + private static $testsDataDirPath = 'data/tests'; /** * Provides an empty value @@ -127,7 +127,7 @@ trait BaseTestCaseTrait /** * Returns path of file used by tests. - * It should be placed in /.data/tests directory of this project. + * It should be placed in /data/tests directory of this project. * * @param string $fileName Name of file * @param string $directoryPath (optional) Path of directory containing the file diff --git a/tests/Test/Base/BaseTestCaseTest.php b/tests/Test/Base/BaseTestCaseTest.php index 0a72083..5e54f9a 100644 --- a/tests/Test/Base/BaseTestCaseTest.php +++ b/tests/Test/Base/BaseTestCaseTest.php @@ -132,7 +132,7 @@ class BaseTestCaseTest extends BaseTestCase $directoryPath .= '/'; } - $expectedContains = sprintf('/.data/tests/%s%s', $directoryPath, $fileName); + $expectedContains = sprintf('/data/tests/%s%s', $directoryPath, $fileName); static::assertContains($expectedContains, $path); }