File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def site
44
44
elsif location [ 'library' ] [ 'code' ] == 'mudd'
45
45
'MUDD'
46
46
else
47
- "RBSC "
47
+ "FIRE "
48
48
end
49
49
end
50
50
@@ -58,7 +58,7 @@ def holding_location_to_site(location_code)
58
58
elsif location_code == 'mudd' && aeon_location?
59
59
'MUDD'
60
60
else
61
- 'RBSC '
61
+ 'FIRE '
62
62
end
63
63
end
64
64
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ def thesis?
98
98
def site
99
99
return 'MUDD' if at_mudd?
100
100
return 'MARQ' if at_marquand?
101
- 'RBSC '
101
+ 'FIRE '
102
102
end
103
103
end
104
104
end
Original file line number Diff line number Diff line change 32
32
it 'takes the SubLocation from the holdings_1display' do
33
33
expect ( subject ) . to include ( 'SubLocation=Euro+20Q' )
34
34
end
35
- it 'typically uses RBSC as the Site' do
36
- expect ( subject ) . to include ( 'Site=RBSC ' )
35
+ it 'typically uses FIRE (Firestone) as the Site' do
36
+ expect ( subject ) . to include ( 'Site=FIRE ' )
37
37
end
38
38
it 'takes the openurl iteminfo5 from the item id' do
39
39
expect ( subject ) . to include ( 'rft.iteminfo5=23740186060006421' )
Original file line number Diff line number Diff line change 304
304
end
305
305
306
306
describe '#site' do
307
- it 'returns a RBSC site param' do
308
- expect ( requestable . site ) . to eq ( 'RBSC ' )
307
+ it 'returns a FIRE site param' do
308
+ expect ( requestable . site ) . to eq ( 'FIRE ' )
309
309
end
310
310
end
311
311
468
468
describe '#aeon_basic_params' do
469
469
it 'includes a Site param' do
470
470
expect ( requestable . aeon_basic_params . key? ( :Site ) ) . to be true
471
- expect ( requestable . aeon_basic_params [ :Site ] ) . to eq ( 'RBSC ' )
471
+ expect ( requestable . aeon_basic_params [ :Site ] ) . to eq ( 'FIRE ' )
472
472
end
473
473
474
474
it 'has a Reference NUmber' do
You can’t perform that action at this time.
0 commit comments