Ejemplo n.º 1
0
 public function testSetsVar()
 {
     $this->assertTrue(empty(\Tinker\Configure::read('foo')));
     \Tinker\Configure::write('foo', 'bar');
     $this->assertSame('bar', \Tinker\Configure::read('foo'));
 }