JD\Cloudder\Test\CloudinaryWrapperTest::it_should_show_usage_list_when_calling_usage PHP Method

it_should_show_usage_list_when_calling_usage() public method

    public function it_should_show_usage_list_when_calling_usage()
    {
        // given
        $this->api->shouldReceive('usage')->once()->with(array());
        // when
        $this->cloudinary_wrapper->usage();
    }
CloudinaryWrapperTest