Scalr\Tests\Api\Rest\ApplicationTest::testGet PHP Method

testGet() public method

public testGet ( )
    public function testGet()
    {
        $route = $this->app->get('/path', function () {
            /* do nothing */
        });
        $this->assertTrue($route->hasMethod(Request::METHOD_HEAD));
        $this->assertTrue($route->hasMethod(Request::METHOD_GET));
        $this->assertFalse($route->hasMethod(Request::METHOD_POST));
    }