Пример #1
0
 function testPostWithParamsAreSetInPostData()
 {
     $r = new Bullet\Request('POST', '/users/129.json', array('id' => '124', 'foo' => 'bar'));
     $this->assertEquals('124', $r->post('id'));
     $this->assertEquals('bar', $r->post('foo'));
 }