Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AuthTest.php « tests - github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0306afd1b027c40781973aced17721d783d90ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>');
    }
}