mirror of
https://github.com/crivion/laranode.git
synced 2026-05-10 07:38:15 +08:00
19 lines
450 B
PHP
19 lines
450 B
PHP
<?php
|
|
|
|
test('registration screen does NOT exist', function () {
|
|
$response = $this->get('/register');
|
|
|
|
$response->assertStatus(404);
|
|
});
|
|
|
|
test('direct users registeration does NOT exist', function () {
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
]);
|
|
|
|
$response->assertStatus(404);
|
|
});
|