Browse Source

renamed expectations in test

pull/673/head
JG 3 years ago
parent
commit
1baa9a7d02
  1. 4
      spec/components/search_result_caption_component_spec.rb

4
spec/components/search_result_caption_component_spec.rb

@ -9,7 +9,7 @@ RSpec.describe SearchResultCaptionComponent, type: :component do
let(:item) { "schemes" }
let(:path) { "path" }
it "all of the nav tabs specified in the items hash are passed to it" do
it "renders table caption including the search results and total" do
result = render_inline(described_class.new(searched:, count:, item_label:, total_count:, item:, path:))
expect(result.to_html).to eq(" <span class=\"govuk-!-margin-right-4\">\n <strong>#{count}</strong> #{item_label} found matching ‘#{searched}’ of <strong>#{total_count}</strong> total #{item}. <a class=\"govuk-link\" href=\"path\">Clear search</a>\n</span>\n")
end
@ -17,7 +17,7 @@ RSpec.describe SearchResultCaptionComponent, type: :component do
context "when no search results are found" do
let(:searched) { nil }
it "all of the nav tabs specified in the items hash are passed to it" do
it "renders table caption with total count only" do
result = render_inline(described_class.new(searched:, count:, item_label:, total_count:, item:, path:))
expect(result.to_html).to eq(" <span class=\"govuk-!-margin-right-4\">\n <strong>#{count}</strong> total #{item}.\n</span>\n")

Loading…
Cancel
Save