for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Greppy package.
*
* (c) Daniel Ribeiro <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace spec\Relax\Greppy\Pattern\Element\Metacharacter;
use Prophecy\Argument;
use PhpSpec\ObjectBehavior;
class OneOrMoreSpec extends ObjectBehavior
{
function it_is_initializable()
$this->shouldHaveType('Relax\Greppy\Pattern\Element\Metacharacter\OneOrMore');
}
function it_should_be_castable_to_string()
$this->__toString()->shouldReturn("+");