for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\split;
use PHPUnit\Framework\TestCase;
class SplitTest extends TestCase
{
public function testSplit()
$string = '.a.b.c';
$expect = ['', 'a', 'b', 'c'];
$actual = split('.')($string);
$this->assertEquals($expect, $actual);
}