コード例 #1
0
ファイル: DojoTest.php プロジェクト: jsnshrmn/Suma
 public function testCallingAUseMethodShouldEnableHelper()
 {
     $this->testShouldBeDisabledByDefault();
     $this->helper->setCdnVersion('1.0');
     $this->assertTrue($this->helper->isEnabled());
     $this->helper->disable();
     $this->assertFalse($this->helper->isEnabled());
     $this->helper->setLocalPath('/js/dojo/dojo.js');
     $this->assertTrue($this->helper->isEnabled());
 }