You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
933 B
31 lines
933 B
require "rails_helper" |
|
|
|
RSpec.describe DetailsTableHelper do |
|
describe "details html" do |
|
let(:details) { details_html(attribute) } |
|
|
|
context "when given a simple attribute" do |
|
let(:attribute) { { name: "name", value: "Dummy org", editable: true } } |
|
|
|
it "displays the string wrapped in a div" do |
|
expect(details).to eq("<div>Dummy org</div>") |
|
end |
|
end |
|
|
|
context "when given a bullet point list of attibutes" do |
|
let(:list) { %w[Camden Westminster Bristol] } |
|
let(:attribute) do |
|
{ |
|
name: "local_authorities_operated_in", |
|
value: list, |
|
editable: false, |
|
format: :bullet, |
|
} |
|
end |
|
|
|
it "displays the string wrapped in an unordered list with the correct classes" do |
|
expect(details).to eq("<ul class=\"govuk-list govuk-list--bullet\"><li>Camden</li><li>Westminster</li><li>Bristol</li></ul>") |
|
end |
|
end |
|
end |
|
end
|
|
|