Jiří Pudil
Jiří Pudil
> It's quite long in my mind that the Tester could support "user's arguments" from CLI. :+1: that would greatly improve extensibility. It's basically the only reason why snapshot testing...
> Not sure, there should be class Snapshot in user space. Looks like Assert::snapshot() is sufficient. @milo that was something I was considering too. I've tried the suggested approach and...
> Try to have path to phps file shorther then 255 chars. This one is 88 characters long. I've even made it use platform-specific directory separator, but it doesn't seem...
Ha, I've accidentally found why appveyor failed. It's not a feature, it's a [bug](https://bugs.php.net/bug.php?id=76801), apparently not fixed until PHP 7.2.18 via [this commit](https://github.com/php/php-src/commit/b8b880932e95ff1e575a04a6988bc0cf00b89842). I'm now skipping the test in environments...
Hello, I've once again found a use for snapshot testing, and it'd be nice if it could be part of Tester. What's the status on this? Can I help in...
> - if some snapshot is missing, assertion fails ✔️ > - calling `tester --snapshot tests` generates fresh new snapshots for all run tests ✔️ The flag is currently `--update-snapshots`,...
Or perhaps there shouldn't be `TimeZone::utc()` at all, only leaving `TimeZoneOffset::utc()`? That's what Java does and it makes it super clear that it's an offset-based TZ. I appreciate the shorthand...
Hi, for dates before time zones were invented, the timezonedb tends to observe the local mean time of the place and simply provides the UTC offset of the town's meridian....
Thanks for the context! It seems that this issue has been remediated in the fresh out of the oven PHP 8.1.7 by an update of the underlying timelib (php/php-src#8589). Unfortunately,...