public function testSet()
 {
     $this->bag->set('notice', 'Foo');
     $this->assertEquals(array('A previous flash message'), $this->bag->peek('notice'));
 }
 public function testSet()
 {
     $this->bag->set('notice', 'Foo');
     $this->assertNotEquals('Foo', $this->bag->peek('notice'));
 }