From aedc24651fde2a51d92208b65bc95e313bdac193 Mon Sep 17 00:00:00 2001 From: Derek Prior Date: Sat, 5 Mar 2016 17:21:05 -0500 Subject: [PATCH] Remove test for disabled functionality Username linking was disabled in 0f498d3ee36db325a9a69b5aebe6a7a91c117e3a, leaving the test suite in a failing state. This test can be restored when the functionality is re-introduced. --- spec/models/markdowner_spec.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/spec/models/markdowner_spec.rb b/spec/models/markdowner_spec.rb index 96d66b8..63c3eee 100644 --- a/spec/models/markdowner_spec.rb +++ b/spec/models/markdowner_spec.rb @@ -6,16 +6,6 @@ describe Markdowner do "

hello there italics and bold!

" end - it "turns @username into a link if @username exists" do - User.make!(:username => "blahblah") - - Markdowner.to_html("hi @blahblah test").should == - "

hi @blahblah test

" - - Markdowner.to_html("hi @flimflam test").should == - "

hi @flimflam test

" - end - # bug#209 it "keeps punctuation inside of auto-generated links when using brackets" do Markdowner.to_html("hi test").should ==