Sha256: 8616e99ee68bfb1e7f6636c5f7e6b0e29b299dcaa81da9e9f6a7d9cdff0fdafa
Contents?: true
Size: 557 Bytes
Versions: 18
Compression:
Stored size: 557 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
18 entries across 18 versions & 1 rubygems