Jarves\Tests\REST\BasicTest::testBasics PHP Method

testBasics() public method

public testBasics ( )
    public function testBasics()
    {
        $loggedIn = $this->restCall('/jarves/admin/logged-in');
        $this->assertTrue($loggedIn['data'], 'we are logged in.');
        $response = $this->call('/jarves');
        $this->assertNotEmpty($response);
        $this->assertContains('Jarves Administration', $response, "we got the login view.");
        $this->assertContains('window._session = {"userId":1', $response, "we're logged in.");
    }