Files
nairobi/spec/components/shared/banner_component_spec.rb
2021-01-19 15:35:18 +01:00

16 lines
413 B
Ruby

require "rails_helper"
describe Shared::BannerComponent, type: :component do
it "renders given a banner" do
render_inline Shared::BannerComponent.new(create(:banner, title: "Vote now!"))
expect(page.find(".banner")).to have_content "Vote now!"
end
it "does not render anything given nil" do
render_inline Shared::BannerComponent.new(nil)
expect(page).not_to have_css ".banner"
end
end