Пример #1
0
 public function testShouldAllowSpecifyingDjConfig()
 {
     $this->helper->setDjConfig(array('parseOnLoad' => 'true'));
     $config = $this->helper->getDjConfig();
     $this->assertTrue(is_array($config));
     $this->assertTrue(array_key_exists('parseOnLoad', $config));
     $this->assertEquals('true', $config['parseOnLoad']);
 }