From b93000c0ce6fc2fd90df0e4a3e427d15cb262117 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Mon, 18 Jan 2010 17:20:12 -0800 Subject: Kohana ticket #2504 is resolved, so this test is no longer necessary. --- modules/gallery/tests/Kohana_Bug_Test.php | 38 ------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 modules/gallery/tests/Kohana_Bug_Test.php (limited to 'modules') diff --git a/modules/gallery/tests/Kohana_Bug_Test.php b/modules/gallery/tests/Kohana_Bug_Test.php deleted file mode 100644 index 61f5d69e..00000000 --- a/modules/gallery/tests/Kohana_Bug_Test.php +++ /dev/null @@ -1,38 +0,0 @@ -name = rand(); - $group->save(); // this save works - - try { - $group->name = null; // now I change to an illegal value - $group->save(); // this passes, but it shouldn't. My model is broken! - - // This is the normal state when the bug is not fixed. - } catch (ORM_Validation_Exception $e) { - // When this triggers, the bug is fixed. Find any references to ticket #2504 in the code - // and update those accordingly - $this->assert_true(false, "Bug #2504 has been fixed"); - } - } -} -- cgit v1.2.3