diff options
author | friendica <info@friendica.com> | 2012-07-18 03:59:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-18 03:59:10 -0700 |
commit | 22cf19e174bcee88b44968f2773d1bad2da2b54d (patch) | |
tree | f4e01db6f73754418438b020c2327e18c256653c /lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php | |
parent | 7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a (diff) | |
download | volse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.tar.gz volse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.tar.bz2 volse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.zip |
bad sync with github windows client
Diffstat (limited to 'lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php')
-rw-r--r-- | lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php b/lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php deleted file mode 100644 index 90bca0739..000000000 --- a/lib/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -class HTMLPurifier_IDAccumulatorTest extends HTMLPurifier_Harness -{ - - function test() { - - // initialize the accumulator - $accumulator = new HTMLPurifier_IDAccumulator(); - - $this->assertTrue( $accumulator->add('id1')); - $this->assertTrue( $accumulator->add('id2')); - $this->assertFalse($accumulator->add('id1')); // repeated id - - // you can also access the properties (they're public) - $this->assertTrue( isset($accumulator->ids['id2']) ); - - } - - function testLoad() { - - $accumulator = new HTMLPurifier_IDAccumulator(); - - $accumulator->load(array('id1', 'id2', 'id3')); - - $this->assertFalse($accumulator->add('id1')); // repeated id - $this->assertTrue($accumulator->add('id4')); - - } - - function testBuild() { - $this->config->set('Attr.IDBlacklist', array('foo')); - $accumulator = HTMLPurifier_IDAccumulator::build($this->config, $this->context); - $this->assertTrue( isset($accumulator->ids['foo']) ); - } - -} - -// vim: et sw=4 sts=4 |