Browse Source

Spec rebrand and rubocop

pull/22/head
baarkerlounger 3 years ago
parent
commit
bfc93c8e9a
  1. 4
      spec/factories/case_log.rb
  2. 2
      spec/features/test_spec.rb
  3. 12
      spec/views/case_log_index_view_spec.rb

4
spec/factories/case_log.rb

@ -11,7 +11,7 @@ FactoryBot.define do
tenant_code { "BZ737" } tenant_code { "BZ737" }
postcode { "NW1 7TY" } postcode { "NW1 7TY" }
end end
created_at { Time.now } created_at { Time.zone.now }
updated_at { Time.now } updated_at { Time.zone.now }
end end
end end

2
spec/features/test_spec.rb

@ -2,7 +2,7 @@ require "rails_helper"
RSpec.describe "Test Features" do RSpec.describe "Test Features" do
it "Displays the name of the app" do it "Displays the name of the app" do
visit("/") visit("/")
expect(page).to have_content("Share Lettings and Sales for Social Housing in England Data with MHCLG") expect(page).to have_content("Share Lettings and Sales for Social Housing in England Data with DLUHC")
end end
it "Links to the About page" do it "Links to the About page" do

12
spec/views/case_log_index_view_spec.rb

@ -3,8 +3,8 @@ RSpec.describe "case_logs/index" do
let(:in_progress_log) { FactoryBot.build(:case_log, :in_progress) } let(:in_progress_log) { FactoryBot.build(:case_log, :in_progress) }
let(:submitted_log) { FactoryBot.build(:case_log, :submitted) } let(:submitted_log) { FactoryBot.build(:case_log, :submitted) }
context 'given an in progress log list' do context "given an in progress log list" do
it 'renders a table for in progress logs only' do it "renders a table for in progress logs only" do
assign(:in_progress_case_logs, [in_progress_log]) assign(:in_progress_case_logs, [in_progress_log])
assign(:submitted_case_logs, []) assign(:submitted_case_logs, [])
render render
@ -16,8 +16,8 @@ RSpec.describe "case_logs/index" do
end end
end end
context 'given a submitted log list' do context "given a submitted log list" do
it 'renders a table for in progress logs only' do it "renders a table for in progress logs only" do
assign(:in_progress_case_logs, []) assign(:in_progress_case_logs, [])
assign(:submitted_case_logs, [submitted_log]) assign(:submitted_case_logs, [submitted_log])
render render
@ -29,8 +29,8 @@ RSpec.describe "case_logs/index" do
end end
end end
context 'given a submitted log list and an in_progress log list' do context "given a submitted log list and an in_progress log list" do
it 'renders two tables, one for each status' do it "renders two tables, one for each status" do
assign(:in_progress_case_logs, [in_progress_log]) assign(:in_progress_case_logs, [in_progress_log])
assign(:submitted_case_logs, [submitted_log]) assign(:submitted_case_logs, [submitted_log])
render render

Loading…
Cancel
Save