php-mpos/tests/unit/config/SampleTest.php
2014-01-28 06:18:57 -05:00

16 lines
339 B
PHP

<?php
// these are ONLY here because we're checking config options
// these should NOT be in a normal unit test
class TestDistConfig extends PHPUnit_Framework_Testcase {
/**
* Test to make sure SALT is sane
*/
function testSaltLength() {
$this->assertNotEmpty(SALT);
$this->assertGreaterThan(1, strlen(SALT));
}
}
?>