Browse Source

failing spec for tab helper

pull/656/head
JG 3 years ago
parent
commit
94e2d52303
  1. 8
      spec/helpers/tab_nav_helper_spec.rb

8
spec/helpers/tab_nav_helper_spec.rb

@ -3,6 +3,7 @@ require "rails_helper"
RSpec.describe TabNavHelper do RSpec.describe TabNavHelper do
let(:organisation) { FactoryBot.create(:organisation) } let(:organisation) { FactoryBot.create(:organisation) }
let(:user) { FactoryBot.build(:user, organisation:) } let(:user) { FactoryBot.build(:user, organisation:) }
let(:scheme) { FactoryBot.build(:scheme) }
describe "#user_cell" do describe "#user_cell" do
it "returns user link and email separated by a newline character" do it "returns user link and email separated by a newline character" do
@ -18,6 +19,13 @@ RSpec.describe TabNavHelper do
end end
end end
describe "#scheme_cell" do
it "returns the scheme link service name and primary user group separated by a newline character" do
expected_html = "<a class=\"govuk-link\" href=\"/supported-housing\">#{scheme.service_name}</a>\n<span class=\"govuk-visually-hidden\">Scheme </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{scheme.primary_client_group}</span>"
expect(scheme_cell(scheme)).to match(expected_html)
end
end
describe "#tab_items" do describe "#tab_items" do
context "when user is a data_coordinator" do context "when user is a data_coordinator" do
let(:user) { FactoryBot.build(:user, :data_coordinator, organisation:) } let(:user) { FactoryBot.build(:user, :data_coordinator, organisation:) }

Loading…
Cancel
Save