add code from patch #6
4 unresolved threads
4 unresolved threads
Closes #3144600
Merge request reports
Activity
18 18 19 /** 20 * Use this inside a #cache array to add cache contexts. 21 */ 22 const CONTEXTS = 'contexts'; 23 24 /** 25 * Use this inside a #cache array to specify cache max age. 26 */ 27 const MAX_AGE = 'max-age'; 28 29 /** 30 * Use this inside a #cache array to add cache tags. 31 */ 32 const TAGS = 'tags'; 33 483 483 $this->assertEquals('Cache context!Cache tag!Asset!Placeholder!barstoolNested!Cached nested!', trim($output), 'Expected HTML generated.'); 484 484 $this->assertEquals(['child.cache_context'], $test_element['#cache']['contexts'], 'Expected cache contexts found.'); 485 485 $this->assertEquals(['child:cache_tag'], $test_element['#cache']['tags'], 'Expected cache tags found.'); 486 // Test the constants for the #cache keys
Please register or sign in to reply