MINOR: Added more explicit test to aid w/ debugging.

This commit is contained in:
Sam Minnee 2011-03-30 18:05:51 +13:00
parent 7cdbbd487f
commit a04ac5ebbe

View File

@ -272,6 +272,12 @@ class VirtualPageTest extends SapphireTest {
// Unpublish the source page, confirm that the virtual page has also been unpublished
$p->doUnpublish();
// The draft VP still has the CopyContentFromID link
$vp->flushCache();
$vp = DataObject::get_by_id('SiteTree', $vp->ID);
$this->assertEquals($p->ID, $vp->CopyContentFromID);
$vpLive = Versioned::get_one_by_stage('SiteTree', 'Live', '"SiteTree"."ID" = ' . $vp->ID);
$this->assertNull($vpLive);