Commit 4132676c authored by Romain Courteaud's avatar Romain Courteaud

FBStorage: do not embed a test inside another one

parent ac07621c
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
// Facebook Storage constructor // Facebook Storage constructor
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
module("Facebook Drive Storage.constructor"); module("FacebookStorage.constructor");
test("create storage", function () { test("create storage", function () {
var jio = jIO.createJIO({ var jio = jIO.createJIO({
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// Facebook Storage.get // Facebook Storage.get
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
module("Facebook Storage.get", { module("FacebookStorage.get", {
setup: function () { setup: function () {
this.server = sinon.fakeServer.create(); this.server = sinon.fakeServer.create();
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// Facebook Storage.allDocs // Facebook Storage.allDocs
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
module("Facebook Storage.allDocs", { module("FacebookStorage.allDocs", {
setup: function () { setup: function () {
this.server = sinon.fakeServer.create(); this.server = sinon.fakeServer.create();
...@@ -544,6 +544,7 @@ ...@@ -544,6 +544,7 @@
.always(function () { .always(function () {
start(); start();
}); });
});
test("get all posts with limit", function () { test("get all posts with limit", function () {
var url1 = 'https://graph.facebook.com/v2.9/sample_user_id/feed?fields' + var url1 = 'https://graph.facebook.com/v2.9/sample_user_id/feed?fields' +
...@@ -612,5 +613,5 @@ ...@@ -612,5 +613,5 @@
start(); start();
}); });
}); });
});
}(jIO, QUnit, sinon)); }(jIO, QUnit, sinon));
\ No newline at end of file
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