From fdb8ba8a2b66d8f28bf57e261d542cbe868853b9 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 31 May 2012 12:13:36 -0600 Subject: [PATCH] Remove redundant gutter spec. Corey's is in a better spot. --- spec/app/editor-spec.coffee | 7 ------- 1 file changed, 7 deletions(-) diff --git a/spec/app/editor-spec.coffee b/spec/app/editor-spec.coffee index de1685ea5..4c6d8e0f3 100644 --- a/spec/app/editor-spec.coffee +++ b/spec/app/editor-spec.coffee @@ -463,13 +463,6 @@ describe "Editor", -> otherEditor.simulateDomAttachment() expect(otherEditor.setMaxLineLength).toHaveBeenCalled() - describe "when lines are folded and then unfolded", -> - it "renders the lines and line numbers correctly after unfolding", -> - editor.createFold(2, 9).destroy() - - expect(editor.gutter.find('.line-number:last').text()).toBe '13' - expect(editor.gutter.find('.line-number').length).toBe 13 - describe "when lines are folded, then the editor becomes shorter before the lines are unfolded", -> it "renders the lines and line numbers correctly after unfolding", -> fold = editor.createFold(1, 9)