From 5e5a13cc621fa9fea9bd3bf753a1e7a7da1f8860 Mon Sep 17 00:00:00 2001 From: Cameron Date: Tue, 14 Aug 2018 17:07:56 -0700 Subject: [PATCH] Added check for Custom-fields 'boostrap3' install.xml data. --- tests/acceptance/0000_InstallCest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/acceptance/0000_InstallCest.php b/tests/acceptance/0000_InstallCest.php index a0913dc76..82d4f3b96 100644 --- a/tests/acceptance/0000_InstallCest.php +++ b/tests/acceptance/0000_InstallCest.php @@ -33,6 +33,12 @@ class InstallCest $this->installe107($I, array('sitetheme'=>'bootstrap3')); $this->testNoUpdatesRequired($I); + // Check install.xml Custom Fields in Page table. + $I->amOnPage('/page.php?id=4'); + $I->see("22 Aug 2018"); + $I->see("United States"); + $I->see("Blue"); + } public function installLandingZero(AcceptanceTester $I)