spec\Newscoop\NewscoopBundle\Controller\TopicsControllerSpec::its_moveAction_should_return_404_status_code_when_topic_to_be_moved_not_found PHP Method

its_moveAction_should_return_404_status_code_when_topic_to_be_moved_not_found() public method

    public function its_moveAction_should_return_404_status_code_when_topic_to_be_moved_not_found($request)
    {
        $response = $this->moveAction($request, 1);
        $response->getStatusCode()->shouldReturn(404);
        $response->shouldBeAnInstanceOf('Symfony\\Component\\HttpFoundation\\JsonResponse');
    }