Files
openfoodnetwork/spec/components/distributor_title_component_spec.rb
2024-05-09 12:24:41 +10:00

11 lines
323 B
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.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