Esempio n. 1
0
 public function testNoPopulatingPasswords()
 {
     Former::populate(array('foo' => 'bar'));
     $populate = Former::password('foo')->__toString();
     $matcher = $this->cg('<input type="password" name="foo" id="foo">');
     $this->assertEquals($matcher, $populate);
 }