From c02d8515002f7702f2c6ea5227bd8a1e1633fa91 Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Tue, 13 Jun 2017 11:09:56 +1200 Subject: [PATCH] FIX Remove providePermissions tests Removed the testProvidePermissions case since it is testing localisations that do not exist, and a localisation that belongs to the framework which should not be tested here. --- tests/CommentAdminTest.php | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/tests/CommentAdminTest.php b/tests/CommentAdminTest.php index b357fe0..4629149 100644 --- a/tests/CommentAdminTest.php +++ b/tests/CommentAdminTest.php @@ -2,34 +2,7 @@ class CommentAdminTest extends SapphireTest { - protected $usesDatabase = true; - - public function testProvidePermissions() - { - $commentAdmin = new CommentAdmin(); - $locale = i18n::get_locale(); - - i18n::set_locale('fr'); - $expected = array( - 'CMS_ACCESS_CommentAdmin' => array( - # FIXME - this is a bug, missing from lang.yml files - 'name' => 'Access to \'Comments\' section', - 'category' => 'Accès au CMS' - ) - ); - $this->assertEquals($expected, $commentAdmin->providePermissions()); - - i18n::set_locale($locale); - $expected = array( - 'CMS_ACCESS_CommentAdmin' => array( - # FIXME - this is a bug, missing from lang.yml files - 'name' => 'Access to \'Comments\' section', - 'category' => 'CMS Access' - ) - ); - $this->assertEquals($expected, $commentAdmin->providePermissions()); - } public function testGetEditForm() {