Add system spec for Admin::TermsOfService index view (#33250)

This commit is contained in:
Matt Jankowski 2024-12-10 18:08:14 -05:00 committed by GitHub
parent ded799f913
commit 094e2172ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,21 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Admin Terms of services' do
describe 'Viewing terms of services index page' do
let!(:terms) { Fabricate :terms_of_service, text: 'Test terms' }
before { sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
it 'allows tags listing and editing' do
visit admin_terms_of_service_index_path
expect(page)
.to have_title(I18n.t('admin.terms_of_service.title'))
expect(page)
.to have_content(terms.text)
end
end
end