for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\always;
use Aerophant\RamdaTest\Asset\PlainObjectAsset;
use PHPUnit\Framework\TestCase;
class AlwaysTest extends TestCase
{
public function testAlwaysMustReturnSameObject()
$always = always()(new PlainObjectAsset());
$this->assertSame($always(), $always());
}