Example #1
0
 function testAcceptHeader()
 {
     $r = new Bullet\Request('', '', array(), array('Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,application/json'));
     $this->assertEquals(array("text/html" => "text/html", "application/xhtml+xml" => "application/xhtml+xml", "application/json" => "application/json", "application/xml" => "application/xml", "*/*" => "*/*"), $r->accept());
 }