MINOR: Added explicit listing of testonly dataobjects for widget tests. (from r96830)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102409 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-04-12 03:27:51 +00:00
parent 723106899f
commit 8d2d4bca68
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',
);
protected $usesDatabase = true;

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');