Tests for custom class in l() function.
function testLCustomClass() {
$class = $this
->randomName();
$link = l($this
->randomName(), $_GET['q'], array(
'attributes' => array(
'class' => array(
$class,
),
),
));
$this
->assertTrue($this
->hasClass($link, $class), format_string('Custom class @class is present on link when requested', array(
'@class' => $class,
)));
$this
->assertTrue($this
->hasClass($link, 'active'), format_string('Class @class is present on link to the current page', array(
'@class' => 'active',
)));
}