[Persistence] Add empty specs
Add empty specs for CouchDB adapter. WTD-537.
This commit is contained in:
15
platform/persistence/test/CouchDocumentSpec.js
Normal file
15
platform/persistence/test/CouchDocumentSpec.js
Normal 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 () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
20
platform/persistence/test/CouchPersistenceProviderSpec.js
Normal file
20
platform/persistence/test/CouchPersistenceProviderSpec.js
Normal file
@@ -0,0 +1,20 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* DomainObjectProviderSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../src/CouchPersistenceProvider"],
|
||||
function (CouchPersistenceProvider) {
|
||||
"use strict";
|
||||
|
||||
describe("The couch persistence provider", function () {
|
||||
var mockHttp,
|
||||
mockQ,
|
||||
testSpace = "testSpace",
|
||||
testPath = "/test/db",
|
||||
provider;
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
4
platform/persistence/test/suite.json
Normal file
4
platform/persistence/test/suite.json
Normal file
@@ -0,0 +1,4 @@
|
||||
[
|
||||
"CouchDocument",
|
||||
"CouchPersistenceProvider"
|
||||
]
|
||||
Reference in New Issue
Block a user