|
From: <kla...@mn...> - 2012-10-05 01:26:17
|
The branch, master has been updated
Summary of changes:
.../class.privacy-policy-forumpost.inc.php | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
...from 5ddc8595a38095794f6aa4e7b1f6a7838b7458cf (commit) to (80c9605c81ec7330f1ea040e8fefd95df84dba7d)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 80c9605c81ec7330f1ea040e8fefd95df84dba7d
Author: Christoph Thelen <chr...@mn...>
Date: Fri Oct 5 02:08:00 2012 +0200
Clean up to finalize #3941
-----------------------------------------------------------------------
Complete Diff
diff --git a/web/forum/tests/functional/class.privacy-policy-forumpost.inc.php b/web/forum/tests/functional/class.privacy-policy-forumpost.inc.php
index 6e1be30..8a9b35f 100644
--- a/web/forum/tests/functional/class.privacy-policy-forumpost.inc.php
+++ b/web/forum/tests/functional/class.privacy-policy-forumpost.inc.php
@@ -1,5 +1,4 @@
<?php
-//@codingStandardsIgnoreFile
/*--------------------------------------------------------------------------+
This file is part of eStudy.
- Autor(en): Christoph Thelen <chr...@mn...>
@@ -31,7 +30,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(ADMIN);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testStudentShouldBeAbleToSeeForumPost() {
@@ -40,7 +39,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(STUDENT);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testSekretariatShouldBeAbleToSeeForumPost() {
@@ -49,7 +48,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(SEKRETARIAT);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testAlumnusShouldBeAbleToSeeForumPost() {
@@ -58,7 +57,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(ALUMNUS);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testSchuelerShouldBeAbleToSeeForumPost() {
@@ -67,7 +66,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(SCHUELER);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testGastShouldBeAbleToSeeForumPost() {
@@ -76,7 +75,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(GAST);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testDozentShouldBeAbleToSeeForumPost() {
@@ -85,7 +84,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->performLoginAsUsergroup(DOZENT);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
public function testMeinDozentShouldBeAbleToSeeForumPost() {
@@ -107,7 +106,7 @@ class PrivacyPolicyForumPostTest extends AbstractEstudySeleniumTest {
$this->changeToCourse($course);
$this->openForumPost();
- //$this->assertForumPostVisible();
+ $this->assertForumPostVisible();
}
protected function tearDown() {
hooks/post-receive
--
estudy
|