diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-15 16:13:10 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-03-08 19:43:13 +0100 |
commit | 843524be0f8b988f38bcbe28b4acceee2b9199d5 (patch) | |
tree | 90f5c77e24a7b29768a03eb28a031f4943778046 /application/tests/test_api_v1.php | |
parent | a42710bebd493c573ce700628ff76fdb22926d4f (diff) |
api/file/create_multipase: return URL
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/tests/test_api_v1.php')
-rw-r--r-- | application/tests/test_api_v1.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/tests/test_api_v1.php b/application/tests/test_api_v1.php index 44b559852..3dcca0728 100644 --- a/application/tests/test_api_v1.php +++ b/application/tests/test_api_v1.php @@ -23,7 +23,7 @@ class test_api_v1 extends Test { private function uploadFile($apikey, $file) { - $ret = $this->CallAPI("POST", "$this->server/api/v1.0.0/file/upload", array( + $ret = $this->CallAPI("POST", "$this->server/api/v1.1.0/file/upload", array( "apikey" => $apikey, "file[1]" => curl_file_create($file), )); @@ -310,6 +310,7 @@ class test_api_v1 extends Test { $this->expectSuccess("create multipaste", $ret); $this->t->isnt($ret["data"]["url_id"], "", "got a multipaste ID"); + $this->t->isnt($ret["data"]["url"], "", "got a multipaste URL"); } public function test_create_multipaste_errorOnWrongID() |