Add vim modelines to all files.
[htmlpurifier.git] / tests / HTMLPurifier / AttrDef / HTML / LinkTypesTest.php
blobeb225f6a7e5e175f52c0e70e3c36d05fd99b1d8b
1 <?php
3 class HTMLPurifier_AttrDef_HTML_LinkTypesTest extends HTMLPurifier_AttrDefHarness
6 function testNull() {
8 $this->def = new HTMLPurifier_AttrDef_HTML_LinkTypes('rel');
9 $this->config->set('Attr', 'AllowedRel', array('nofollow', 'foo'));
11 $this->assertDef('', false);
12 $this->assertDef('nofollow', true);
13 $this->assertDef('nofollow foo', true);
14 $this->assertDef('nofollow bar', 'nofollow');
15 $this->assertDef('bar', false);
21 // vim: et sw=4 sts=4