Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
assertNoModerationForm example
$this
->
drupalGet
(
$edit_path
)
;
$this
->
submitNodeForm
(
'Test 1.5 EN', 'published', TRUE
)
;
$this
->
assertNotLatestVersionPage
(
$node
)
;
$this
->
assertModerationForm
(
$fr_node
)
;
$this
->
assertModerationForm
(
$it_node
)
;
// Publish the Italian draft (revision 6).
$this
->
drupalGet
(
$translate_path
)
;
$this
->
clickLink
(
'Edit', 3
)
;
$this
->
submitNodeForm
(
'Test 1.6 IT', 'published'
)
;
$this
->
assertNotLatestVersionPage
(
$it_node
)
;
$this
->
assertNoModerationForm
(
$node
)
;
$this
->
assertModerationForm
(
$fr_node
)
;
// Publish the French draft (revision 7).
$this
->
drupalGet
(
$translate_path
)
;
$this
->
clickLink
(
'Edit', 2
)
;
$this
->
submitNodeForm
(
'Test 1.7 FR', 'published'
)
;
$this
->
assertNotLatestVersionPage
(
$fr_node
)
;
$this
->
assertNoModerationForm
(
$node
)
;
$this
->
assertNoModerationForm
(
$it_node
)
;
// Create an Italian draft (revision 8).