public function testShouldValidateObjects()
 {
     $rule = new Executable();
     $object = $this->getMock('SplFileInfo', array('isExecutable'), array('somefile.txt'));
     $object->expects($this->once())->method('isExecutable')->will($this->returnValue(true));
     $this->assertTrue($rule->validate($object));
 }