From 6ae684d609dd4fa3d0bb5681d5f1d60a4b52c562 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 28 Feb 2013 10:14:55 -0700 Subject: [PATCH] Kill commented specs that were used as a reminder --- spec/app/pane-spec.coffee | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/spec/app/pane-spec.coffee b/spec/app/pane-spec.coffee index 83e999bf9..7285ab778 100644 --- a/spec/app/pane-spec.coffee +++ b/spec/app/pane-spec.coffee @@ -503,23 +503,3 @@ describe "Pane", -> it "can serialize and deserialize the pane and all its serializable items", -> newPane = deserialize(pane.serialize()) expect(newPane.getItems()).toEqual [editSession1, editSession2] - -# This relates to confirming the closing of a tab -# -# describe "when buffer is modified", -> -# it "triggers an alert and does not close the session", -> -# spyOn(editor, 'remove').andCallThrough() -# spyOn(atom, 'confirm') -# editor.insertText("I AM CHANGED!") -# editor.trigger "core:close" -# expect(editor.remove).not.toHaveBeenCalled() -# expect(atom.confirm).toHaveBeenCalled() -# -# it "doesn't trigger an alert if the buffer is opened in multiple sessions", -> -# spyOn(editor, 'remove').andCallThrough() -# spyOn(atom, 'confirm') -# editor.insertText("I AM CHANGED!") -# editor.splitLeft() -# editor.trigger "core:close" -# expect(editor.remove).toHaveBeenCalled() -# expect(atom.confirm).not.toHaveBeenCalled()