diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-09-20 13:38:04 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-09-20 13:38:04 +0100 |
commit | e32c63be6acd27534fb248e74e6394bf4fd8f28e (patch) | |
tree | baa2a51740fed2798d798836144458444d4fc82e /spec/models/public_body_spec.rb | |
parent | 6d3d9d9846fa905e606f0a2aa6f1ec32122f4850 (diff) | |
parent | 44d64c22bbd49722688a680ce89bff3d1d3a8bdb (diff) |
Merge branch 'release/0.6.6' into wdtk
Diffstat (limited to 'spec/models/public_body_spec.rb')
-rw-r--r-- | spec/models/public_body_spec.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/models/public_body_spec.rb b/spec/models/public_body_spec.rb index 9e22a9c43..011824190 100644 --- a/spec/models/public_body_spec.rb +++ b/spec/models/public_body_spec.rb @@ -407,6 +407,7 @@ describe PublicBody, " when loading CSV files" do end describe PublicBody do + describe "calculated home page" do it "should return the home page verbatim if it's present" do public_body = PublicBody.new @@ -438,4 +439,17 @@ describe PublicBody do public_body.calculated_home_page.should == "https://example.com" end end + + describe 'when asked for notes without html' do + + before do + @public_body = PublicBody.new(:notes => 'some <a href="/notes">notes</a>') + end + + it 'should remove simple tags from notes' do + @public_body.notes_without_html.should == 'some notes' + end + + end + end |