You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
307 B
12 lines
307 B
3 years ago
|
require "rails_helper"
|
||
|
RSpec.describe "Test Features" do
|
||
|
let!(:case_log){ FactoryBot.create(:case_log) }
|
||
|
let(:id){ case_log.id }
|
||
|
let(:status) { case_log.status }
|
||
|
|
||
|
it "Displays a tasklist header" do
|
||
|
visit("/case_logs/342351")
|
||
|
expect(page).to have_content("Tasklist for log 342351")
|
||
|
end
|
||
|
end
|