Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
assertFeed example
// Test ['#attached']['http_header'] with various replacement rules.
$this
->
drupalGet
(
'/render_attached_test/header'
)
;
$this
->
assertTeapotHeaders
(
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'MISS'
)
;
// Repeat for the cache.
$this
->
drupalGet
(
'/render_attached_test/header'
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'HIT'
)
;
// Test ['#attached']['feed'].
$this
->
drupalGet
(
'/render_attached_test/feed'
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'MISS'
)
;
$this
->
assertFeed
(
)
;
// Repeat for the cache.
$this
->
drupalGet
(
'/render_attached_test/feed'
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'HIT'
)
;
// Test ['#attached']['html_head'].
$this
->
drupalGet
(
'/render_attached_test/head'
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'MISS'
)
;
$this
->
assertHead
(
)
;
// Repeat for the cache.
$this
->
drupalGet
(
'/render_attached_test/head'
)
;
$this
->
assertSession
(
)
->
responseHeaderEquals
(
'X-Drupal-Cache', 'HIT'
)
;