aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_test/tests/inc/cache_use.test.php
Commit message (Collapse)AuthorAge
* add needed type hints for phpunit8Andreas Gohr2021-02-04
| | | | This will break a lot of plugin tests, but can't be avoided
* Rename fields and add deprecated __get/__setMichael Große2019-02-14
| | | | | | These fields might still be accessed from the outside, so in order to not break backwards compatibility, this uses magic methods that emit deprecation errors.
* Refactor cache.php into different filesMichael Große2019-02-02
|
* introduce new "flaky" test groupAndreas Gohr2015-04-25
| | | | this group is skipped by default
* skip cache test until #694 has been fixedAndreas Gohr2014-07-18
|
* Issue 694: fix failing test - set filemtimes explicitly in test setupChristopher Smith2014-05-13
|
* put PHPDocs comment back the way it should beChristopher Smith2014-03-16
|
* Fix longstanding issue with cache class & cachetime settingChristopher Smith2014-03-16
| | | | | | | | | | | | 1. cachetime setting should only be applied to the cache_renderer class. Previously it was applied to cache_parser (and by extension cache_handler). 2. two special cachetime values, -1 & 0, weren't handled, per FS#2183 To handle the cachetime setting, -1, disable caching, a new property _nocache is added. When that property is true, any cache file must not be used and storecache() should not store any values
* Add a basic test case for the cacheMichael Hamann2014-03-14
This very basic test ensures that the useCache method works as expected for simple scenarios. This test case fails without commit a8795974051a91137b01ff88dbf5586a647b24ce and then also triggers the warning that was introduced in bc2ddb548f71b1a822dd03c3bc7c3c0e7cd9b152