Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Lester committed Sep 12, 2019
1 parent 614fd6a commit 5d0b397
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/EloquentSalesForceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,16 @@ public function testWhereBoolean()
$this->assertCount(5, $leads);
}

/*
* @covers Lester\EloquentSalesForce\Database\SOQLGrammar
* @covers Lester\EloquentSalesForce\Database\SOQLGrammar::whereIn
*/
public function testWhereIn()
{
$leads = TestLead::where('FirstName', ['Kathy', 'Betty'])->get();
$this->assertTrue($leads->count() >= 2);
}

/**
* @covers Lester\EloquentSalesForce\Database\SOQLGrammar
* @covers Lester\EloquentSalesForce\Database\SOQLGrammar::whereDate
Expand Down

0 comments on commit 5d0b397

Please sign in to comment.