public function testAllowsSettingServerWithTraversableObject()
 {
     $server = new ArrayIterator($this->server);
     $ua = new Zend_Http_UserAgent(array('server' => $server));
     $this->assertEquals($this->server['os'], $ua->getServerValue('os'));
 }