Skip to content

Commit

Permalink
Merge pull request #140 from djmattyg007/add_quotertest_assertion
Browse files Browse the repository at this point in the history
Add "table dot star" assertion to quoter test
  • Loading branch information
Paul M. Jones authored Apr 19, 2017
2 parents f38d290 + d150149 commit cd93d42
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Common/QuoterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public function testQuoteName()
// star dot star
$actual = $this->quoter->quoteName('*.*');
$this->assertSame('*.*', $actual);

// table dot star
$actual = $this->quoter->quoteName('table.*');
$this->assertSame('"table".*', $actual);
}

public function testQuoteNamesIn()
Expand Down

0 comments on commit cd93d42

Please sign in to comment.