GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — rewrite-laravel ( eaffaa...c55a9d )
by Oliver
03:01
created

it_can_browse_transaction_create_form()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 11
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace Tests\Feature;
4
5
use Tests\Features\TestCase;
6
7
class TransactionControllerTest extends TestCase
8
{
9
    /**
10
     * A basic test example.
11
     *
12
     * @test
13
     *
14
     * @return void
15
     */
16
    public function it_can_browse_transaction_create_page()
17
    {
18
        // Arrange
19
20
        // Act
21
        $response = $this->get('/transactions/create');
22
23
        // Assert
24
        $response->assertStatus(200)
25
            ->assertSee('Add new Transaction');
26
    }
27
}
28