for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\pair;
use PHPUnit\Framework\TestCase;
class PairTest extends TestCase
{
public function testPair()
$firstValue = 'foo';
$secondValue = 'bar';
$expect = ['foo', 'bar'];
$actual = pair($firstValue)($secondValue);
$this->assertEquals($expect, $actual);
}