for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\dropFirst;
use PHPUnit\Framework\TestCase;
class DropFirstTest extends TestCase
{
// TODO
public function testDropFirst()
$this->assertEquals([2,3,4], dropFirst()([1,2,3,4]));
}