mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-13 00:38:42 +00:00
c0b5bc3eea
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1599 48356398-32a2-884e-a903-53898d9a118a
18 lines
484 B
PHP
18 lines
484 B
PHP
<?php
|
|
|
|
class HTMLPurifier_ConfigSchema_Validator_AlnumTest extends HTMLPurifier_ConfigSchema_ValidatorHarness
|
|
{
|
|
|
|
public function setup() {
|
|
$this->validator = new HTMLPurifier_ConfigSchema_Validator_Alnum('ID');
|
|
parent::setup();
|
|
}
|
|
|
|
public function testValidate() {
|
|
$this->expectSchemaException('R&D in ID must be alphanumeric');
|
|
$arr = array('ID' => 'R&D');
|
|
$this->validator->validate($arr, $this->interchange);
|
|
}
|
|
|
|
}
|