Files
openfoodnetwork/spec/components/distributor_title_component_spec.rb
Jean-Baptiste Bellet 4781d6cc84 Add new (and first) component: DistributorTitle
- Simple wrapper around `<h3 />` for distributor title, used in the shop front
2021-04-22 15:08:54 +02:00

9 lines
288 B
Ruby

require "spec_helper"
describe "DistributorTitle tests", type: :component do
it "displays distributor title with its name" do
render_inline(DistributorTitleComponent.new(name: "Freddy's Farm Shop")) { }
expect(page).to have_selector "h3", text: "Freddy's Farm Shop"
end
end