aboutsummaryrefslogtreecommitdiffstats
path: root/lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php')
-rw-r--r--lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php b/lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php
deleted file mode 100644
index 43084de3a..000000000
--- a/lib/htmlpurifier/tests/HTMLPurifier/HTMLModule/NofollowTest.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-class HTMLPurifier_HTMLModule_NofollowTest extends HTMLPurifier_HTMLModuleHarness
-{
-
- function setUp() {
- parent::setUp();
- $this->config->set('HTML.Nofollow', true);
- }
-
- function testNofollow() {
- $this->assertResult(
- '<a href="http://google.com">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>',
- '<a href="http://google.com" rel="nofollow">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>'
- );
- }
-
- function testNofollowDupe() {
- $this->assertResult(
- '<a href="http://google.com" rel="nofollow">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>'
- );
- }
-
-}
-
-// vim: et sw=4 sts=4