MINOR: Added explicit listing of testonly dataobjects for widget tests.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@96830 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-01-13 00:53:16 +00:00
parent 078412eedd
commit 3b88d34230
2 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,11 @@ class WidgetAreaEditorTest extends SapphireTest {
* This is the widget you want to use for your unit tests.
*/
protected $widgetToTest = 'WidgetAreaEditorTest_TestWidget';
protected $extraDataObjects = array(
'WidgetAreaEditorTest_FakePage',
'WidgetAreaEditorTest_TestWidget',
);
function testFillingOneArea() {
$oldRequest = $_REQUEST;

View File

@ -5,6 +5,11 @@
*/
class WidgetControllerTest extends FunctionalTest {
static $fixture_file = 'sapphire/tests/widgets/WidgetControllerTest.yml';
protected $extraDataObjects = array(
'WidgetControllerTestPage',
'WidgetControllerTest_Widget',
);
function testWidgetFormRendering() {
$page = $this->objFromFixture('WidgetControllerTestPage', 'page1');