mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-09 11:42:28 +01:00
19 lines
432 B
PHP
19 lines
432 B
PHP
|
<?php
|
||
|
|
||
|
class AuthTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* Test Authentication (sign up and sign in)
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function testLogin() {
|
||
|
// $this->visit('/')
|
||
|
// ->type('polrci', 'username')
|
||
|
// ->type('polrci', 'password ')
|
||
|
// ->press('Sign In')
|
||
|
// ->dontSee('name="login" value="Sign In" />')
|
||
|
// ->see('>Dashboard</a>');
|
||
|
}
|
||
|
}
|