Auth Tests Versions Save

Always-current tests for Laravel's authentication system. Curated by the community.

5.7.14

5 years ago

5.7.0

5 years ago

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

5.6.2

6 years ago

This update is recommended for all 5.6 users.

5.6.1

6 years ago

5.6.0

6 years ago

5.5.6

6 years ago
  • 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

5.5.5

6 years ago

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

5.5.4

6 years ago

5.5.3

6 years ago

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.

5.5.2

6 years ago
  • Extracted all route() helper calls into methods on test classes for easy links manipulation
  • Extracted fromPage() method into a trait to save on duplication