mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Fix(tests) change asserts in to check correct values
This commit is contained in:
parent
94192f4b66
commit
0a708d9ea3
@ -286,9 +286,13 @@ class UserDefinedFormControllerTest extends FunctionalTest
|
|||||||
$html = $index->renderWith(__CLASS__);
|
$html = $index->renderWith(__CLASS__);
|
||||||
$parser = new CSSContentParser($html);
|
$parser = new CSSContentParser($html);
|
||||||
|
|
||||||
$this->assertContains('$UserDefinedForm', $html);
|
// Assert no Content has been rendered
|
||||||
|
$this->assertNotContains('<p>Here is my form</p><p>$UserDefinedForm</p><p>Thank you for filling it out</p>', $html);
|
||||||
|
// And no form
|
||||||
|
$this->assertArrayNotHasKey(0, $parser->getBySelector('form#UserForm_Form_' . $form->ID));
|
||||||
|
// check for the input
|
||||||
|
$this->assertArrayNotHasKey(0, $parser->getBySelector('input.text'));
|
||||||
|
|
||||||
$this->checkTemplateIsCorrect($parser, $form);
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Publish a form for use on the frontend
|
* Publish a form for use on the frontend
|
||||||
|
Loading…
Reference in New Issue
Block a user