for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\orLogically;
use PHPUnit\Framework\TestCase;
class OrLogicallyTest extends TestCase
{
public function testOrLogicallyWithTrueAndFalse()
$actual = orLogically(true)(false);
$this->assertTrue($actual);
}
public function testOrLogicallyWithFalseAndFalse()
$actual = orLogically(false)(false);
$this->assertFalse($actual);