[Persistence] Add empty specs

Add empty specs for CouchDB adapter. WTD-537.
This commit is contained in:
Victor Woeltjen
2014-12-02 17:26:16 -08:00
parent 4646896ac8
commit aef6f44cb5
4 changed files with 46 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* DomainObjectProviderSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/CouchDocument"],
function (CouchDocument) {
"use strict";
describe("A couch document", function () {
});
}
);