Skip to content

Commit

Permalink
Merge pull request #592 from IU-Libraries-Joint-Development/essi-1919…
Browse files Browse the repository at this point in the history
…_additional_holding_locations

[ESSI-1919] add B-IGWS, B-ESAAD holding locations
  • Loading branch information
aploshay authored Dec 15, 2023
2 parents 59d45b3 + 6c9ec3f commit 3e437d8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
30 changes: 30 additions & 0 deletions config/authorities/supplemental_holding_locations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,33 @@
longitude: "-86.16780"
parking: https://eiteljorg.org/visit/map-hours-parking/
notes:
- code: 'B-IGWS'
label: 'Bloomington - Indiana Geological and Water Survey'
address: 'Geology Building'
address2: '1001 E. 10th St.'
city: 'Bloomington'
state: 'IN'
zip: '47405'
phone: '812-855-7636'
email: '[email protected]'
url: 'https://igws.indiana.edu'
urlHours: 'https://igws.indiana.edu/about/'
latitude: '39.1719'
longitude: '-86.521264'
parking: https://parking.indiana.edu/
notes: ''
- code: 'B-ESAAD'
label: 'Bloomington - Eskenazi School of Art, Architecture + Design'
address: 'Fine Arts Building'
address2: '1201 E. Seventh Street'
city: 'Bloomington'
state: 'IN'
zip: '47405'
phone: '812-855-4627'
email: '[email protected]'
url: 'https://eskenazi.indiana.edu/exhibitions/sage-collection/index.html'
urlHours: 'https://eskenazi.indiana.edu/exhibitions/sage-collection/index.html'
latitude: '39.1689179'
longitude: '-86.5189909'
parking: https://parking.indiana.edu/
notes: ''
6 changes: 3 additions & 3 deletions spec/authorities/qa/authorities/iucat_libraries_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
api_enabled: true } }
let(:api_disabled) { { url: 'http://some_unreachable_server',
api_enabled: false } }
let(:supplemental_data) { authority.supplemental_data }
let(:supplemental_data) { authority.send :supplemental_data }

context 'when configuration does not exist' do
before do
Expand All @@ -22,7 +22,7 @@
it 'returns only supplemental data' do
expect(result).to be_a Array
expect(result).not_to be_empty
expect(result.size).to eq 5
expect(result.size).to eq supplemental_data.size
end
end
end
Expand Down Expand Up @@ -50,7 +50,7 @@
it 'returns only supplemental data' do
expect(result).to be_a Array
expect(result).not_to be_empty
expect(result.size).to eq 5
expect(result.size).to eq supplemental_data.size
end
end
end
Expand Down

0 comments on commit 3e437d8

Please sign in to comment.