chatbox-inc/peridot-lumen-plugin

A Peridot plugin to simplify testing Lumen applications

1.0.2 2016-07-28 07:41 UTC

This package is auto-updated.

Last update: 2024-04-05 23:14:21 UTC


README

Easy to test Lumen Application with Peridot;

Usage

install via composer

$ composer require --dev chatbox-inc/peridot-lumen-plugin

and register in peridot.php file

<?php
use Evenement\EventEmitterInterface;

return function(EventEmitterInterface $emitter) {
    \Peridot\Plugin\Lumen\register(require __DIR__ . '/app.php');
};

You can use it in your spec as $this->lumen

    it('GET /string should get string ', function() {
        $this->lumen->get("/string");
        /** @var \Illuminate\Http\Response $response */
        $response = $this->lumen->response;

        assert($response->getStatusCode() === 200);
        assert($response->getOriginalContent() === "hogehoge");
    });