Example #1
0
 /** @test */
 public function it_should_allow_construction_with_config()
 {
     $config = ['driver' => 'database', 'foo' => 'bar'];
     $Session = new Session($config);
     $assertion = array_replace($this->defaultConfig, $config);
     $this->assertEquals($assertion, $Session->getConfig());
 }