Sha256: 5ca9cc1796edb4f8e330e00d2200b75901665845b293e6ac8d942dd70eeef034
Contents?: true
Size: 579 Bytes
Versions: 20
Compression:
Stored size: 579 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' feature 'Data dictionary download tool' do feature 'when data_dictionary reference present' do scenario 'shows up in tools' do visit solr_document_path 'nyu_2451_34502' expect(page).to have_css 'li.data_dictionary a', text: 'Documentation' end end feature 'when data_dictionary reference absent' do scenario 'download tool is not rendered' do visit solr_document_path 'stanford-cg357zz0321' expect(page).not_to have_css 'li.data_dictionary a', text: 'Documentation' end end end
Version data entries
20 entries across 20 versions & 1 rubygems