Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created July 14, 2010 10:29
Show Gist options
  • Save vangberg/475281 to your computer and use it in GitHub Desktop.
Save vangberg/475281 to your computer and use it in GitHub Desktop.
couchTests.all_changes = function(debug) {
var db = new CouchDB("test_suite_db", {"X-Couch-Full-Commit":"false"});
db.deleteDb();
db.createDb();
if (debug) debugger;
var doc = {a:1};
db.save(doc);
db.deleteDoc(doc)
var req = CouchDB.request("GET", "/test_suite_db/_changes");
var resp = JSON.parse(req.responseText);
TEquals(2, resp.results.length, "should have change for create and delete");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment