Created
July 14, 2010 10:29
-
-
Save vangberg/475281 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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