1
0
Fork 0

remove stray test of removed foxx-feature.

This commit is contained in:
Willi Goesgens 2015-08-05 09:48:08 +02:00
parent f44d246a34
commit b4675448c2
1 changed files with 0 additions and 21 deletions

View File

@ -1480,27 +1480,6 @@ function SetupSessions () {
}
assertUndefined(err);
},
testRefusesUnknownSessionsTypes: function () {
var err;
app = new FoxxController(fakeContext);
try {
app.activateSessions({
sessionStorage: 'sessions',
type: 'magic',
cookie: {
name: 'sid',
secret: 'secret'
}
});
} catch (e) {
err = e;
}
assertTrue(err instanceof Error);
}
};
}