Sha256: 6fb914c8f59073ac320f8f94d49cd5f54b1223205d764d5bce43eb4387aa6c60
Contents?: true
Size: 558 Bytes
Versions: 22
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true describe 'Metadata Administration', type: :feature do let(:exhibit) { FactoryBot.create(:exhibit) } let(:user) { FactoryBot.create(:exhibit_admin, exhibit: exhibit) } before { login_as user } describe 'edit' do it 'displays the metadata edit page' do visit spotlight.edit_exhibit_metadata_configuration_path(exhibit) expect(page).to have_css('h1 small', text: 'Metadata') within("[data-id='language_ssm']") do expect(page).to have_css('td', text: 'Language') end end end end
Version data entries
22 entries across 22 versions & 1 rubygems