| 1 | <?php |
||
| 14 | class ConnectionSpec extends ObjectBehavior |
||
| 15 | { |
||
| 16 | const CONNECTION_PROVISIONING_TABLE = 'changelog'; |
||
| 17 | const CONNECTION_CRITERIA_COLUMN = 'changelog_number'; |
||
| 18 | |||
| 19 | function it_should_set_connection_parameters() |
||
| 20 | { |
||
| 21 | $this->useSqlite(true); |
||
| 22 | $this->setProvisioningTable(self::CONNECTION_PROVISIONING_TABLE) |
||
| 23 | ->setCriteriaColumn(self::CONNECTION_CRITERIA_COLUMN); |
||
| 24 | |||
| 25 | $this->getCurrentConnection(); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |