Rename tests to make room for controller tests

Album_Test -> Album_Helper_Test
  Photo_Test -> Photo_Helper_Test
This commit is contained in:
Bharat Mediratta
2008-11-09 23:49:09 +00:00
parent 1ba012db0e
commit 223cba531e
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class Album_Test extends Unit_Test_Case {
class Album_Helper_Test extends Unit_Test_Case {
public function create_album_test() {
$rand = rand();
$album = album::create(1, $rand, $rand, $rand);

View File

@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class Photo_Test extends Unit_Test_Case {
class Photo_Helper_Test extends Unit_Test_Case {
public function create_photo_test() {
$rand = rand();
$photo = photo::create(1, DOCROOT . "core/tests/test.jpg", "$rand.jpg", $rand, $rand);