Skip to content

Releases: DCzajkowski/auth-tests

Fixes one test, regarding verifying account for different user

01 Dec 00:37
Compare
Choose a tag to compare

Email Verification

27 Sep 16:42
8d836e8
Compare
Choose a tag to compare

Features a test for the new email verification feature added in Laravel 5.7.

Added a test for the 'Remember Me' functionality

24 Apr 17:37
Compare
Choose a tag to compare

This update is recommended for all 5.6 users.

Removed an unnecessary call to withoutExceptionHandling

24 Apr 15:59
Compare
Choose a tag to compare
5.6.1

Remove redundant withoutExceptionHandling call

Updated for Laravel 5.6 release

16 Apr 16:03
Compare
Choose a tag to compare
5.6.0

Updated readme

New flags and more

01 Jan 03:16
Compare
Choose a tag to compare
  • Added two new flags to further customize your tests. Remember you can always use PHPFixer or some kind of StyleCI to get your preferred coding style.
  • Fixed snake-case not exploding articles
  • Fixed a doc-block typo

Use of the new from() helper

22 Dec 00:16
Compare
Choose a tag to compare

Updated the tests to use a now-built-in helper in Laravel Test Case.

It removes the now-unnecessary MakesRequestsFromPage trait and replaces it with a call to the from method.

Important: This release requires Laravel version ~5.5.27

Fixes typo in README file

16 Nov 15:18
Compare
Choose a tag to compare
5.5.4

Fix readme

Added new options

16 Nov 15:17
fbb31e0
Compare
Choose a tag to compare

Added two new flags, that allow you to use your favourite style of tests-naming.

  • -a — Annotate method names with /** @todo */ instead of prepending test names with 'test',
  • -s — Snake-case method names.

Extracted methods

28 Sep 20:42
Compare
Choose a tag to compare
  • Extracted all route() helper calls into methods on test classes for easy links manipulation
  • Extracted fromPage() method into a trait to save on duplication