mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 08:52:15 -05:00
cleanup Lawnchair dep injection
This commit is contained in:
parent
9a7e87d33e
commit
0fb0e7c1e7
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* Handles generic caching of JSON objects in a lawnchair adapter
|
||||
*/
|
||||
app.dao.LawnchairDAO = function(window) {
|
||||
app.dao.LawnchairDAO = function(Lawnchair) {
|
||||
'use strict';
|
||||
|
||||
var db = new Lawnchair({
|
||||
|
@ -11,7 +11,7 @@ var devicestorage_test = {
|
||||
asyncTest("Init", 3, function() {
|
||||
// init dependencies
|
||||
devicestorage_test.util = new cryptoLib.Util(window, uuid);
|
||||
devicestorage_test.jsonDao = new app.dao.LawnchairDAO(window);
|
||||
devicestorage_test.jsonDao = new app.dao.LawnchairDAO(Lawnchair);
|
||||
devicestorage_test.crypto = new app.crypto.Crypto(window, devicestorage_test.util);
|
||||
devicestorage_test.storage = new app.dao.DeviceStorage(devicestorage_test.util, devicestorage_test.crypto, devicestorage_test.jsonDao, null);
|
||||
ok(devicestorage_test.storage, 'DeviceStorageDAO');
|
||||
|
@ -11,7 +11,7 @@ var emaildao_test = {
|
||||
asyncTest("Init", 3, function() {
|
||||
// init dependencies
|
||||
var util = new cryptoLib.Util(window, uuid);
|
||||
var jsonDao = new app.dao.LawnchairDAO(window);
|
||||
var jsonDao = new app.dao.LawnchairDAO(Lawnchair);
|
||||
emaildao_test.crypto = new app.crypto.Crypto(window, util);
|
||||
emaildao_test.storage = new app.dao.DeviceStorage(util, emaildao_test.crypto, jsonDao, null);
|
||||
// cloud storage stub
|
||||
|
@ -11,7 +11,7 @@ var keychaindao_test = {
|
||||
asyncTest("Init", 2, function() {
|
||||
// init dependencies
|
||||
var util = new cryptoLib.Util(window, uuid);
|
||||
var jsonDao = new app.dao.LawnchairDAO(window);
|
||||
var jsonDao = new app.dao.LawnchairDAO(Lawnchair);
|
||||
var crypto = new app.crypto.Crypto(window, util);
|
||||
// cloud storage stub
|
||||
var cloudstorageStub = {
|
||||
|
@ -4,7 +4,7 @@ var lawnchairdao_test = {};
|
||||
|
||||
asyncTest("Init", 2, function() {
|
||||
// init dependencies
|
||||
lawnchairdao_test.jsonDao = new app.dao.LawnchairDAO(window);
|
||||
lawnchairdao_test.jsonDao = new app.dao.LawnchairDAO(Lawnchair);
|
||||
ok(lawnchairdao_test.jsonDao, 'LanwchairDAO');
|
||||
|
||||
// clear db before test
|
||||
|
Loading…
Reference in New Issue
Block a user