From 2eabd0bf1d5c3d0cfa0f2883f6cfd65298ef4cd1 Mon Sep 17 00:00:00 2001 From: Francis Irving Date: Thu, 3 Dec 2009 13:22:55 +0000 Subject: Rename spec files to libs, and to end _spec --- spec/libs/format_spec.rb | 53 ------------------------------------------------ 1 file changed, 53 deletions(-) delete mode 100644 spec/libs/format_spec.rb (limited to 'spec/libs/format_spec.rb') diff --git a/spec/libs/format_spec.rb b/spec/libs/format_spec.rb deleted file mode 100644 index 8f0ebbed9..000000000 --- a/spec/libs/format_spec.rb +++ /dev/null @@ -1,53 +0,0 @@ -require File.dirname(__FILE__) + '/../spec_helper' - -describe "when making clickable" do - - it "should make URLs into links" do - text = "Hello http://www.flourish.org goodbye" - text = CGI.escapeHTML(text) - formatted = MySociety::Format.make_clickable(text) - formatted.should == "Hello http://www.flourish.org goodbye" - end - - it "should make wrapped URLs in angle brackets clickable" do - text = """ - -More stuff and then another angle bracket >""" - text = CGI.escapeHTML(text) - - formatted = MySociety::Format.make_clickable(text) - - formatted.should == "<http://www.flourish.org/blog>\n\nMore stuff and then another angle bracket >" - end - - it "should make wrapped URLs in angle brackets clickable" do - text = """ Valid -request - name and address for correspondence - -If we can be of any further assistance please contact our Helpline on 08456 -30 60 60 or 01625 545745 if you would prefer to call a national rate number, -quoting your case reference number. You may also find some useful -information on our website at - www.ico.gov.uk.""" - text = CGI.escapeHTML(text) - formatted = MySociety::Format.make_clickable(text) - - expected_formatted = """<https://web.nhs.net/owa/redir.aspx?C=25a8af7e66054d62a435313f7f3d4694&URL=http%3a%2f%2fwww.ico.gov.uk%2fupload%2fdocuments%2flibrary%2ffreedom_of_information%2fdetailed_specialist_guides%2fname_of_applicant_fop083_v1.pdf> Valid -request - name and address for correspondence - -If we can be of any further assistance please contact our Helpline on 08456 -30 60 60 or 01625 545745 if you would prefer to call a national rate number, -quoting your case reference number. You may also find some useful -information on our website at -<https://web.nhs.net/owa/redir.aspx?C=25a8af7e66054d62a435313f7f3d4694&URL=http%3a%2f%2fwww.ico.gov.uk%2f> www.ico.gov.uk.""" - - formatted.should == expected_formatted - end - - -end -- cgit v1.2.3