Example #1
0
 /** @test */
 public function overrideContext()
 {
     $context = new Context(array('foo' => 'bar'));
     $context->override(new Context(array('foo' => 'jarl')));
     $this->assertEquals('jarl', $context['foo']);
 }