summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJordi Boggiano <j.boggiano@seld.be>2016-07-29 04:09:04 +0200
committerJordi Boggiano <j.boggiano@seld.be>2016-07-29 04:09:04 +0200
commitf952c6b5c945cb42a24dcdfe2d96912e3698605c (patch)
treec6285f1ab600f416d70f710d4a94b93ff60074c7 /tests
parent5298d1aa339a22b79e263914fed0fab3a58d5896 (diff)
parentfac277b15a3884dde33d8bf07d2588a8051a13a6 (diff)
downloadmonolog-f952c6b5c945cb42a24dcdfe2d96912e3698605c.zip
monolog-f952c6b5c945cb42a24dcdfe2d96912e3698605c.tar.gz
monolog-f952c6b5c945cb42a24dcdfe2d96912e3698605c.tar.bz2
Merge branch '1.x', fixes #771
Diffstat (limited to 'tests')
-rw-r--r--tests/Monolog/Handler/RotatingFileHandlerTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Monolog/Handler/RotatingFileHandlerTest.php b/tests/Monolog/Handler/RotatingFileHandlerTest.php
index 4df8cbd..58188e2 100644
--- a/tests/Monolog/Handler/RotatingFileHandlerTest.php
+++ b/tests/Monolog/Handler/RotatingFileHandlerTest.php
@@ -156,9 +156,13 @@ class RotatingFileHandlerTest extends TestCase
['Y/m/d', true],
['Y.m.d', true],
['Y_m_d', true],
+ ['Ymd', true],
+ ['Ym/d', true],
['Y/m', true],
+ ['Ym', true],
['Y.m', true],
['Y_m', true],
+ ['Y/md', true],
['', false],
['m-d-Y', false],
['Y-m-d-h-i', false],