update v1.0.7.7

This commit is contained in:
Sujit Prasad
2016-06-23 11:32:26 +05:30
parent 91a72ea438
commit 6b0e2384fe
435 changed files with 36399 additions and 79 deletions

View File

@@ -0,0 +1,21 @@
<?php
class HTMLPurifier_StringHashTest extends UnitTestCase
{
public function testUsed()
{
$hash = new HTMLPurifier_StringHash(array(
'key' => 'value',
'key2' => 'value2'
));
$this->assertIdentical($hash->getAccessed(), array());
$t = $hash->offsetGet('key');
$this->assertIdentical($hash->getAccessed(), array('key' => true));
$hash->resetAccessed();
$this->assertIdentical($hash->getAccessed(), array());
}
}
// vim: et sw=4 sts=4