aboutsummaryrefslogtreecommitdiff
path: root/mod/htmlawed/tests/tags.php
blob: 05fe829f4497ac17f7fba9c8c5204748a88713c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php

/**
 * Dupplicated tags in htmlawed
 */
class HtmLawedDuplicateTagsTest extends ElggCoreUnitTest {

	/**
	 * Called before each test object.
	 */
	public function __construct() {
		parent::__construct();
	}

	/**
	 * Called before each test method.
	 */
	public function setUp() {
		
	}

	/**
	 * Called after each test method.
	 */
	public function tearDown() {
		// do not allow SimpleTest to interpret Elgg notices as exceptions
		$this->swallowErrors();
	}

	/**
	 * Called after each test object.
	 */
	public function __destruct() {
		// all __destruct() code should go above here
		parent::__destruct();
	}

	public function testNotDuplicateTags() {
		$filter_html = '<ul><li>item</li></ul>';
		set_input('test', $filter_html);

		$expected = $filter_html;
		$result = get_input('test');
		$this->assertEqual($result, $expected);
	}

}