Example #1
0
 public function testCreateMaster()
 {
     $url = $this->client->getApiUrl('createMaster', array('file-format' => 'txt', 'language-tag' => 'en'));
     $response = json_decode($this->client->createMaster('txt', 'en', $this->fixtureFilePath), true);
     $this->assertEquals($url, $response['url']);
     $this->assertEquals('POST', $response['method']);
     $this->assertEquals('multipart/form-data', $response['mime-type']);
 }