Exemplo n.º 1
0
 public function testDisableSecurityTokenDoesntAddTokenFormField()
 {
     SecurityToken::enable();
     $formWithToken = $this->getStubForm();
     $this->assertInstanceOf('HiddenField', $formWithToken->Fields()->fieldByName(SecurityToken::get_default_name()), 'Token field added by default');
     $formWithoutToken = $this->getStubForm();
     $formWithoutToken->disableSecurityToken();
     $this->assertNull($formWithoutToken->Fields()->fieldByName(SecurityToken::get_default_name()), 'Token field not added if disableSecurityToken() is set');
 }