Browse Source

Corrige grafia dos testes de associados

master
Guilherme Capanema 6 years ago
parent
commit
673ea9b4e0
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      tests/Feature/Associates/Auth/LoginTest.php
  2. +3
    -3
      tests/Feature/Associates/Auth/Passwords/EmailTest.php
  3. +1
    -1
      tests/Feature/Associates/Auth/Register/IndividualTest.php

+ 1
- 1
tests/Feature/Associates/Auth/LoginTest.php View File

@ -33,7 +33,7 @@ class LoginTest extends TestCase
} }
/** @test */ /** @test */
public function a_associate_can_login()
public function an_associate_can_login()
{ {
$associate = $this->factoryWithoutObservers(Associate::class)->create(['password' => Hash::make('password')]); $associate = $this->factoryWithoutObservers(Associate::class)->create(['password' => Hash::make('password')]);


+ 3
- 3
tests/Feature/Associates/Auth/Passwords/EmailTest.php View File

@ -20,7 +20,7 @@ class EmailTest extends TestCase
} }
/** @test */ /** @test */
public function a_associate_must_enter_an_email_address()
public function an_associate_must_enter_an_email_address()
{ {
Livewire::test('associates.auth.passwords.email') Livewire::test('associates.auth.passwords.email')
->call('sendResetPasswordLink') ->call('sendResetPasswordLink')
@ -28,7 +28,7 @@ class EmailTest extends TestCase
} }
/** @test */ /** @test */
public function a_associate_must_enter_a_valid_email_address()
public function an_associate_must_enter_a_valid_email_address()
{ {
Livewire::test('associates.auth.passwords.email') Livewire::test('associates.auth.passwords.email')
->set('email', 'email') ->set('email', 'email')
@ -37,7 +37,7 @@ class EmailTest extends TestCase
} }
/** @test */ /** @test */
public function a_associate_who_enters_a_valid_email_address_will_get_sent_an_email()
public function an_associate_who_enters_a_valid_email_address_will_get_sent_an_email()
{ {
$associate = factory(Associate::class)->create(); $associate = factory(Associate::class)->create();


+ 1
- 1
tests/Feature/Associates/Auth/Register/IndividualTest.php View File

@ -36,7 +36,7 @@ class IndividualTest extends TestCase
} }
/** @test */ /** @test */
function a_associate_can_register()
function an_associate_can_register()
{ {
Mail::fake(); Mail::fake();