Plum\Plum\Converter\LogConverterTest::convertWithDefaultOptions PHP Method

convertWithDefaultOptions() public method

    public function convertWithDefaultOptions()
    {
        $converter = new LogConverter($this->logger);
        $item = ['a' => 'foo', 'b' => 'bar'];
        $this->logger->shouldReceive('log')->with('debug', 'Converting item', $item);
        $converter->convert($item);
    }