Example #1
0
 public function testLacks()
 {
     $collection = new Collection(['a' => 'x']);
     $this->assertFalse($collection->lacks('a'));
     $this->assertTrue($collection->lacks('b'));
 }