Remove obsoleted filelist prototype backup in tests

This commit is contained in:
Vincent Petry 2014-12-04 18:39:20 +01:00
parent c02ef69521
commit bf887eca8b
3 changed files with 3 additions and 24 deletions

View File

@ -9,8 +9,7 @@
*/
describe('OCA.External.FileList tests', function() {
var testFiles, alertStub, notificationStub, fileList, fileActions;
var oldFileListPrototype;
var testFiles, alertStub, notificationStub, fileList;
beforeEach(function() {
alertStub = sinon.stub(OC.dialogs, 'alert');
@ -49,14 +48,11 @@ describe('OCA.External.FileList tests', function() {
'<div id="emptycontent">Empty content message</div>' +
'</div>'
);
fileActions = new OCA.Files.FileActions();
});
afterEach(function() {
OCA.Files.FileList.prototype = oldFileListPrototype;
testFiles = undefined;
fileList.destroy();
fileList = undefined;
fileActions = undefined;
notificationStub.restore();
alertStub.restore();

View File

@ -9,7 +9,6 @@
*/
describe('OCA.Sharing.Util tests', function() {
var oldFileListPrototype;
var fileList;
var testFiles;
@ -24,10 +23,6 @@ describe('OCA.Sharing.Util tests', function() {
}
beforeEach(function() {
// back up prototype, as it will be extended by
// the sharing code
oldFileListPrototype = _.extend({}, OCA.Files.FileList.prototype);
var $content = $('<div id="content"></div>');
$('#testArea').append($content);
// dummy file list
@ -67,7 +62,6 @@ describe('OCA.Sharing.Util tests', function() {
};
});
afterEach(function() {
OCA.Files.FileList.prototype = oldFileListPrototype;
delete OCA.Sharing.sharesLoaded;
delete OC.Share.droppedDown;
fileList.destroy();

View File

@ -9,8 +9,7 @@
*/
describe('OCA.Sharing.FileList tests', function() {
var testFiles, alertStub, notificationStub, fileList, fileActions;
var oldFileListPrototype;
var testFiles, alertStub, notificationStub, fileList;
beforeEach(function() {
alertStub = sinon.stub(OC.dialogs, 'alert');
@ -46,17 +45,11 @@ describe('OCA.Sharing.FileList tests', function() {
'<div id="emptycontent">Empty content message</div>' +
'</div>'
);
// back up prototype, as it will be extended by
// the sharing code
oldFileListPrototype = _.extend({}, OCA.Files.FileList.prototype);
fileActions = new OCA.Files.FileActions();
});
afterEach(function() {
OCA.Files.FileList.prototype = oldFileListPrototype;
testFiles = undefined;
fileList.destroy();
fileList = undefined;
fileActions = undefined;
notificationStub.restore();
alertStub.restore();
@ -577,11 +570,7 @@ describe('OCA.Sharing.FileList tests', function() {
'</div>');
$('#content').append($div);
fileList = new OCA.Files.FileList(
$div, {
fileActions: fileActions
}
);
fileList = new OCA.Files.FileList($div);
OCA.Sharing.Util.attach(fileList);
});