Commit e40db7a0 authored by Tristan Cavelier's avatar Tristan Cavelier

some english word corrected

parent 93d52ec9
...@@ -930,13 +930,13 @@ test ("Get", function(){ ...@@ -930,13 +930,13 @@ test ("Get", function(){
"applicationname": "aget" "applicationname": "aget"
}); });
// get unexistant document // get inexistent document
o.spy(o, "status", 404, "Get unexistant document"); o.spy(o, "status", 404, "Get inexistent document");
o.jio.get("get1", o.f); o.jio.get("get1", o.f);
o.tick(o); o.tick(o);
// get unexistant attachment // get inexistent attachment
o.spy(o, "status", 404, "Get unexistant attachment"); o.spy(o, "status", 404, "Get inexistent attachment");
o.jio.get("get1/get2", o.f); o.jio.get("get1/get2", o.f);
o.tick(o); o.tick(o);
...@@ -952,8 +952,8 @@ test ("Get", function(){ ...@@ -952,8 +952,8 @@ test ("Get", function(){
o.jio.get("get1", o.f); o.jio.get("get1", o.f);
o.tick(o); o.tick(o);
// get unexistant attachment (document exists) // get inexistent attachment (document exists)
o.spy(o, "status", 404, "Get unexistant attachment (document exists)"); o.spy(o, "status", 404, "Get inexistent attachment (document exists)");
o.jio.get("get1/get2", o.f); o.jio.get("get1/get2", o.f);
o.tick(o); o.tick(o);
...@@ -987,13 +987,13 @@ test ("Remove", function(){ ...@@ -987,13 +987,13 @@ test ("Remove", function(){
"applicationname": "aremove" "applicationname": "aremove"
}); });
// remove unexistant document // remove inexistent document
o.spy(o, "status", 404, "Remove unexistant document"); o.spy(o, "status", 404, "Remove inexistent document");
o.jio.remove({"_id": "remove1"}, o.f); o.jio.remove({"_id": "remove1"}, o.f);
o.tick(o); o.tick(o);
// remove unexistant document/attachment // remove inexistent document/attachment
o.spy(o, "status", 404, "Remove unexistant document/attachment"); o.spy(o, "status", 404, "Remove inexistent document/attachment");
o.jio.remove({"_id": "remove1/remove2"}, o.f); o.jio.remove({"_id": "remove1/remove2"}, o.f);
o.tick(o); o.tick(o);
...@@ -1204,13 +1204,13 @@ test ("Get", function(){ ...@@ -1204,13 +1204,13 @@ test ("Get", function(){
}); });
o.localpath = "jio/localstorage/urevget/arevget"; o.localpath = "jio/localstorage/urevget/arevget";
// get unexistant document // get inexistent document
o.spy(o, "status", 404, "Get unexistant document (winner)"); o.spy(o, "status", 404, "Get inexistent document (winner)");
o.jio.get("get1", o.f); o.jio.get("get1", o.f);
o.tick(o); o.tick(o);
// get unexistant attachment // get inexistent attachment
o.spy(o, "status", 404, "Get unexistant attachment (winner)"); o.spy(o, "status", 404, "Get inexistent attachment (winner)");
o.jio.get("get1/get2", o.f); o.jio.get("get1/get2", o.f);
o.tick(o); o.tick(o);
...@@ -1264,8 +1264,8 @@ test ("Get", function(){ ...@@ -1264,8 +1264,8 @@ test ("Get", function(){
o.f); o.f);
o.tick(o); o.tick(o);
// get unexistant specific document // get inexistent specific document
o.spy(o, "status", 404, "Get document (unexistant specific revision)"); o.spy(o, "status", 404, "Get document (inexistent specific revision)");
o.jio.get("get1", { o.jio.get("get1", {
"revs_info": true, "revs": true, "conflicts": true, "revs_info": true, "revs": true, "conflicts": true,
"rev": "1-rev0" "rev": "1-rev0"
...@@ -1303,8 +1303,8 @@ test ("Get", function(){ ...@@ -1303,8 +1303,8 @@ test ("Get", function(){
o.jio.get("get1/get2", o.f); o.jio.get("get1/get2", o.f);
o.tick(o); o.tick(o);
// get unexistant attachment specific rev // get inexistent attachment specific rev
o.spy(o, "status", 404, "Get unexistant attachment (specific revision)"); o.spy(o, "status", 404, "Get inexistent attachment (specific revision)");
o.jio.get("get1/get2", { o.jio.get("get1/get2", {
"revs_info": true, "revs": true, "conflicts": true, "revs_info": true, "revs": true, "conflicts": true,
"rev": "1-rev1" "rev": "1-rev1"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment