Commit c4b4f659 by David Halls Committed by Wout Mertens

Add test for OPEN_FULLMUTEX (#1)

parent 3a2a823e
...@@ -6,6 +6,7 @@ describe('constants', function() { ...@@ -6,6 +6,7 @@ describe('constants', function() {
assert.ok(sqlite3.OPEN_READONLY === 1); assert.ok(sqlite3.OPEN_READONLY === 1);
assert.ok(sqlite3.OPEN_READWRITE === 2); assert.ok(sqlite3.OPEN_READWRITE === 2);
assert.ok(sqlite3.OPEN_CREATE === 4); assert.ok(sqlite3.OPEN_CREATE === 4);
assert.ok(sqlite3.OPEN_FULLMUTEX === 0x00010000);
}); });
it('should have the right error flags', function() { it('should have the right error flags', function() {
......
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