exlibris-aleph 0.1.6 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/README.md +89 -0
  2. data/Rakefile +2 -4
  3. data/lib/exlibris-aleph.rb +8 -21
  4. data/lib/exlibris/aleph.rb +13 -0
  5. data/lib/exlibris/aleph/abstract.rb +28 -0
  6. data/lib/exlibris/aleph/config.rb +78 -0
  7. data/lib/exlibris/aleph/patron.rb +71 -56
  8. data/lib/exlibris/aleph/record.rb +34 -40
  9. data/lib/exlibris/aleph/rest/base.rb +56 -0
  10. data/lib/exlibris/aleph/tab_helper.rb +84 -99
  11. data/lib/exlibris/aleph/{config/config_base.rb → tabs_parser/base.rb} +2 -2
  12. data/lib/exlibris/aleph/{config → tabs_parser}/pc_tab_exp_field_extended.rb +2 -2
  13. data/lib/exlibris/aleph/{config/config_by_sub_library.rb → tabs_parser/sub_library.rb} +2 -2
  14. data/lib/exlibris/aleph/{config → tabs_parser}/tab15_by_item_process_status.rb +2 -2
  15. data/lib/exlibris/aleph/{config → tabs_parser}/tab15_by_item_status.rb +2 -2
  16. data/lib/exlibris/aleph/{config → tabs_parser}/tab31.rb +2 -2
  17. data/lib/exlibris/aleph/{config → tabs_parser}/tab37.rb +2 -2
  18. data/lib/exlibris/aleph/{config → tabs_parser}/tab40.rb +2 -2
  19. data/lib/exlibris/aleph/{config → tabs_parser}/tab_sub_library.rb +2 -2
  20. data/lib/exlibris/aleph/{config → tabs_parser}/tab_www_item_desc.rb +2 -2
  21. data/lib/exlibris/aleph/task_installer.rb +23 -0
  22. data/lib/exlibris/aleph/version.rb +1 -1
  23. data/lib/exlibris/aleph/write_attributes.rb +38 -0
  24. data/lib/exlibris/aleph/xml_util.rb +50 -0
  25. data/lib/exlibris/aleph/xservice/bor_auth.rb +47 -0
  26. data/lib/tasks/exlibris-aleph_tasks.rake +1 -8
  27. data/test/{dummy/config → config}/aleph/alephe/sub_libraries.yml +0 -1
  28. data/test/{dummy/config → config}/aleph/nyu50/collections.yml +0 -1
  29. data/test/{dummy/config → config}/aleph/nyu50/item_permissions_by_item_process_status.yml +0 -1
  30. data/test/{dummy/config → config}/aleph/nyu50/item_permissions_by_item_status.yml +104 -105
  31. data/test/{dummy/config → config}/aleph/nyu50/items.yml +0 -1
  32. data/test/{dummy/config → config}/aleph/nyu50/patron_permissions.yml +27 -28
  33. data/test/{dummy/config → config}/aleph/nyu50/patrons.yml +0 -1
  34. data/test/{dummy/config → config}/aleph/nyu50/pickup_locations.yml +0 -1
  35. data/test/{dummy/config → config}/aleph/nyu51/collections.yml +0 -1
  36. data/test/{dummy/config → config}/aleph/nyu51/item_permissions_by_item_process_status.yml +0 -1
  37. data/test/{dummy/config → config}/aleph/nyu51/item_permissions_by_item_status.yml +6 -7
  38. data/test/{dummy/config → config}/aleph/nyu51/items.yml +0 -1
  39. data/test/{dummy/config → config}/aleph/nyu51/patron_permissions.yml +27 -28
  40. data/test/{dummy/config → config}/aleph/nyu51/patrons.yml +0 -1
  41. data/test/{dummy/config → config}/aleph/nyu51/pickup_locations.yml +0 -1
  42. data/test/config_test.rb +24 -0
  43. data/test/patron_test.rb +98 -0
  44. data/test/{unit/record_benchmarks.rb → record_benchmarks.rb} +0 -0
  45. data/test/record_test.rb +64 -0
  46. data/test/support/config.yml +2 -0
  47. data/test/{unit/tab_helper_benchmarks.rb → tab_helper_benchmarks.rb} +5 -20
  48. data/test/tab_helper_test.rb +178 -0
  49. data/test/test_helper.rb +26 -22
  50. data/test/vcr_cassettes/bor_auth.yml +8 -10
  51. data/test/vcr_cassettes/patron.yml +77 -18
  52. data/test/vcr_cassettes/patron_address.yml +45 -0
  53. data/test/vcr_cassettes/patron_bogus_url.yml +731 -0
  54. data/test/vcr_cassettes/patron_error.yml +93 -0
  55. data/test/vcr_cassettes/record.yml +18 -17
  56. data/test/vcr_cassettes/record_bogus_url.yml +690 -0
  57. data/test/{unit → xservice}/bor_auth_test.rb +4 -4
  58. metadata +160 -150
  59. data/README.rdoc +0 -67
  60. data/lib/exlibris/aleph/bor_auth.rb +0 -45
  61. data/lib/exlibris/aleph/railtie.rb +0 -9
  62. data/lib/exlibris/aleph/rest.rb +0 -43
  63. data/lib/exlibris/aleph/tasks.rb +0 -25
  64. data/test/dummy/README.rdoc +0 -261
  65. data/test/dummy/Rakefile +0 -7
  66. data/test/dummy/app/assets/javascripts/application.js +0 -15
  67. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  68. data/test/dummy/app/controllers/application_controller.rb +0 -3
  69. data/test/dummy/app/helpers/application_helper.rb +0 -2
  70. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  71. data/test/dummy/config.ru +0 -4
  72. data/test/dummy/config/application.rb +0 -56
  73. data/test/dummy/config/boot.rb +0 -10
  74. data/test/dummy/config/database.yml +0 -25
  75. data/test/dummy/config/environment.rb +0 -5
  76. data/test/dummy/config/environments/development.rb +0 -37
  77. data/test/dummy/config/environments/production.rb +0 -67
  78. data/test/dummy/config/environments/test.rb +0 -37
  79. data/test/dummy/config/initializers/aleph.rb +0 -1
  80. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  81. data/test/dummy/config/initializers/inflections.rb +0 -15
  82. data/test/dummy/config/initializers/mime_types.rb +0 -5
  83. data/test/dummy/config/initializers/secret_token.rb +0 -7
  84. data/test/dummy/config/initializers/session_store.rb +0 -8
  85. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  86. data/test/dummy/config/locales/en.yml +0 -5
  87. data/test/dummy/config/routes.rb +0 -58
  88. data/test/dummy/db/README +0 -0
  89. data/test/dummy/db/test.sqlite3 +0 -0
  90. data/test/dummy/log/aleph/aleph_tab_helper.log +0 -1
  91. data/test/dummy/log/aleph/tab_helper.log +0 -109
  92. data/test/dummy/log/tab_helper.log +0 -16
  93. data/test/dummy/log/test.log +0 -5160
  94. data/test/dummy/public/404.html +0 -26
  95. data/test/dummy/public/422.html +0 -26
  96. data/test/dummy/public/500.html +0 -25
  97. data/test/dummy/public/favicon.ico +0 -0
  98. data/test/dummy/script/rails +0 -6
  99. data/test/unit/patron_test.rb +0 -41
  100. data/test/unit/record_test.rb +0 -32
  101. data/test/unit/tab_helper_test.rb +0 -222
@@ -7,9 +7,9 @@ class BorAuthTest < ActiveSupport::TestCase
7
7
  test "new" do
8
8
  VCR.use_cassette('bor auth') do
9
9
  bor_auth =
10
- Exlibris::Aleph::BorAuth.new(
10
+ Exlibris::Aleph::Xservice::BorAuth.new(
11
11
  "http://aleph.library.nyu.edu", "NYU50", "BOBST", "N",
12
- "N12162279", "d4465aacaa645f2164908cd4184c09f0")
12
+ "BOR_ID", "VERIFICATION")
13
13
  assert_nil(bor_auth.error, "Error is not nil.")
14
14
  end
15
15
  end
@@ -17,9 +17,9 @@ class BorAuthTest < ActiveSupport::TestCase
17
17
  test "permissions" do
18
18
  VCR.use_cassette('bor auth') do
19
19
  bor_auth =
20
- Exlibris::Aleph::BorAuth.new(
20
+ Exlibris::Aleph::Xservice::BorAuth.new(
21
21
  "http://aleph.library.nyu.edu", "NYU50", "BOBST", "N",
22
- "N12162279", "d4465aacaa645f2164908cd4184c09f0")
22
+ "BOR_ID", "VERIFICATION")
23
23
  assert_equal("51", bor_auth.permissions[:bor_status])
24
24
  assert_equal("CB", bor_auth.permissions[:bor_type])
25
25
  assert_equal("Y", bor_auth.permissions[:hold_on_shelf])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exlibris-aleph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,16 +9,16 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-27 00:00:00.000000000 Z
12
+ date: 2013-03-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: rails
15
+ name: rake
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.0
21
+ version: 10.0.3
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,71 +26,135 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 3.2.0
29
+ version: 10.0.3
30
+ - !ruby/object:Gem::Dependency
31
+ name: require_all
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.2.1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.2.1
30
46
  - !ruby/object:Gem::Dependency
31
47
  name: nokogiri
32
48
  requirement: !ruby/object:Gem::Requirement
33
49
  none: false
34
50
  requirements:
35
- - - ! '>='
51
+ - - ~>
36
52
  - !ruby/object:Gem::Version
37
- version: '0'
53
+ version: 1.5.6
38
54
  type: :runtime
39
55
  prerelease: false
40
56
  version_requirements: !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
- - - ! '>='
59
+ - - ~>
44
60
  - !ruby/object:Gem::Version
45
- version: '0'
61
+ version: 1.5.6
46
62
  - !ruby/object:Gem::Dependency
47
63
  name: httparty
48
64
  requirement: !ruby/object:Gem::Requirement
49
65
  none: false
50
66
  requirements:
51
- - - ! '>='
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 0.10.2
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 0.10.2
78
+ - !ruby/object:Gem::Dependency
79
+ name: activesupport
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 3.2.12
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 3.2.12
94
+ - !ruby/object:Gem::Dependency
95
+ name: builder
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 3.2.0
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 3.2.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: marc
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
52
116
  - !ruby/object:Gem::Version
53
- version: '0'
117
+ version: 0.5.0
54
118
  type: :runtime
55
119
  prerelease: false
56
120
  version_requirements: !ruby/object:Gem::Requirement
57
121
  none: false
58
122
  requirements:
59
- - - ! '>='
123
+ - - ~>
60
124
  - !ruby/object:Gem::Version
61
- version: '0'
125
+ version: 0.5.0
62
126
  - !ruby/object:Gem::Dependency
63
127
  name: vcr
64
128
  requirement: !ruby/object:Gem::Requirement
65
129
  none: false
66
130
  requirements:
67
- - - ! '>='
131
+ - - ~>
68
132
  - !ruby/object:Gem::Version
69
- version: '0'
133
+ version: 2.4.0
70
134
  type: :development
71
135
  prerelease: false
72
136
  version_requirements: !ruby/object:Gem::Requirement
73
137
  none: false
74
138
  requirements:
75
- - - ! '>='
139
+ - - ~>
76
140
  - !ruby/object:Gem::Version
77
- version: '0'
141
+ version: 2.4.0
78
142
  - !ruby/object:Gem::Dependency
79
143
  name: webmock
80
144
  requirement: !ruby/object:Gem::Requirement
81
145
  none: false
82
146
  requirements:
83
- - - ! '>='
147
+ - - ~>
84
148
  - !ruby/object:Gem::Version
85
- version: '0'
149
+ version: 1.9.0
86
150
  type: :development
87
151
  prerelease: false
88
152
  version_requirements: !ruby/object:Gem::Requirement
89
153
  none: false
90
154
  requirements:
91
- - - ! '>='
155
+ - - ~>
92
156
  - !ruby/object:Gem::Version
93
- version: '0'
157
+ version: 1.9.0
94
158
  description: Library to handle Exlibris' Aleph ILS.
95
159
  email:
96
160
  - scotdalton@gmail.com
@@ -98,79 +162,49 @@ executables: []
98
162
  extensions: []
99
163
  extra_rdoc_files: []
100
164
  files:
101
- - lib/exlibris/aleph/bor_auth.rb
102
- - lib/exlibris/aleph/config/config_base.rb
103
- - lib/exlibris/aleph/config/config_by_sub_library.rb
104
- - lib/exlibris/aleph/config/pc_tab_exp_field_extended.rb
105
- - lib/exlibris/aleph/config/tab15_by_item_process_status.rb
106
- - lib/exlibris/aleph/config/tab15_by_item_status.rb
107
- - lib/exlibris/aleph/config/tab31.rb
108
- - lib/exlibris/aleph/config/tab37.rb
109
- - lib/exlibris/aleph/config/tab40.rb
110
- - lib/exlibris/aleph/config/tab_sub_library.rb
111
- - lib/exlibris/aleph/config/tab_www_item_desc.rb
165
+ - lib/exlibris/aleph/abstract.rb
166
+ - lib/exlibris/aleph/config.rb
112
167
  - lib/exlibris/aleph/patron.rb
113
- - lib/exlibris/aleph/railtie.rb
114
168
  - lib/exlibris/aleph/record.rb
115
- - lib/exlibris/aleph/rest.rb
169
+ - lib/exlibris/aleph/rest/base.rb
116
170
  - lib/exlibris/aleph/tab_helper.rb
117
- - lib/exlibris/aleph/tasks.rb
171
+ - lib/exlibris/aleph/tabs_parser/base.rb
172
+ - lib/exlibris/aleph/tabs_parser/pc_tab_exp_field_extended.rb
173
+ - lib/exlibris/aleph/tabs_parser/sub_library.rb
174
+ - lib/exlibris/aleph/tabs_parser/tab15_by_item_process_status.rb
175
+ - lib/exlibris/aleph/tabs_parser/tab15_by_item_status.rb
176
+ - lib/exlibris/aleph/tabs_parser/tab31.rb
177
+ - lib/exlibris/aleph/tabs_parser/tab37.rb
178
+ - lib/exlibris/aleph/tabs_parser/tab40.rb
179
+ - lib/exlibris/aleph/tabs_parser/tab_sub_library.rb
180
+ - lib/exlibris/aleph/tabs_parser/tab_www_item_desc.rb
181
+ - lib/exlibris/aleph/task_installer.rb
118
182
  - lib/exlibris/aleph/version.rb
183
+ - lib/exlibris/aleph/write_attributes.rb
184
+ - lib/exlibris/aleph/xml_util.rb
185
+ - lib/exlibris/aleph/xservice/bor_auth.rb
186
+ - lib/exlibris/aleph.rb
119
187
  - lib/exlibris-aleph.rb
120
188
  - lib/tasks/exlibris-aleph_tasks.rake
121
189
  - MIT-LICENSE
122
190
  - Rakefile
123
- - README.rdoc
124
- - test/dummy/app/assets/javascripts/application.js
125
- - test/dummy/app/assets/stylesheets/application.css
126
- - test/dummy/app/controllers/application_controller.rb
127
- - test/dummy/app/helpers/application_helper.rb
128
- - test/dummy/app/views/layouts/application.html.erb
129
- - test/dummy/config/aleph/alephe/sub_libraries.yml
130
- - test/dummy/config/aleph/nyu50/collections.yml
131
- - test/dummy/config/aleph/nyu50/item_permissions_by_item_process_status.yml
132
- - test/dummy/config/aleph/nyu50/item_permissions_by_item_status.yml
133
- - test/dummy/config/aleph/nyu50/items.yml
134
- - test/dummy/config/aleph/nyu50/patron_permissions.yml
135
- - test/dummy/config/aleph/nyu50/patrons.yml
136
- - test/dummy/config/aleph/nyu50/pickup_locations.yml
137
- - test/dummy/config/aleph/nyu51/collections.yml
138
- - test/dummy/config/aleph/nyu51/item_permissions_by_item_process_status.yml
139
- - test/dummy/config/aleph/nyu51/item_permissions_by_item_status.yml
140
- - test/dummy/config/aleph/nyu51/items.yml
141
- - test/dummy/config/aleph/nyu51/patron_permissions.yml
142
- - test/dummy/config/aleph/nyu51/patrons.yml
143
- - test/dummy/config/aleph/nyu51/pickup_locations.yml
144
- - test/dummy/config/application.rb
145
- - test/dummy/config/boot.rb
146
- - test/dummy/config/database.yml
147
- - test/dummy/config/environment.rb
148
- - test/dummy/config/environments/development.rb
149
- - test/dummy/config/environments/production.rb
150
- - test/dummy/config/environments/test.rb
151
- - test/dummy/config/initializers/aleph.rb
152
- - test/dummy/config/initializers/backtrace_silencers.rb
153
- - test/dummy/config/initializers/inflections.rb
154
- - test/dummy/config/initializers/mime_types.rb
155
- - test/dummy/config/initializers/secret_token.rb
156
- - test/dummy/config/initializers/session_store.rb
157
- - test/dummy/config/initializers/wrap_parameters.rb
158
- - test/dummy/config/locales/en.yml
159
- - test/dummy/config/routes.rb
160
- - test/dummy/config.ru
161
- - test/dummy/db/README
162
- - test/dummy/db/test.sqlite3
163
- - test/dummy/log/aleph/aleph_tab_helper.log
164
- - test/dummy/log/aleph/tab_helper.log
165
- - test/dummy/log/tab_helper.log
166
- - test/dummy/log/test.log
167
- - test/dummy/public/404.html
168
- - test/dummy/public/422.html
169
- - test/dummy/public/500.html
170
- - test/dummy/public/favicon.ico
171
- - test/dummy/Rakefile
172
- - test/dummy/README.rdoc
173
- - test/dummy/script/rails
191
+ - README.md
192
+ - test/config/aleph/alephe/sub_libraries.yml
193
+ - test/config/aleph/nyu50/collections.yml
194
+ - test/config/aleph/nyu50/item_permissions_by_item_process_status.yml
195
+ - test/config/aleph/nyu50/item_permissions_by_item_status.yml
196
+ - test/config/aleph/nyu50/items.yml
197
+ - test/config/aleph/nyu50/patron_permissions.yml
198
+ - test/config/aleph/nyu50/patrons.yml
199
+ - test/config/aleph/nyu50/pickup_locations.yml
200
+ - test/config/aleph/nyu51/collections.yml
201
+ - test/config/aleph/nyu51/item_permissions_by_item_process_status.yml
202
+ - test/config/aleph/nyu51/item_permissions_by_item_status.yml
203
+ - test/config/aleph/nyu51/items.yml
204
+ - test/config/aleph/nyu51/patron_permissions.yml
205
+ - test/config/aleph/nyu51/patrons.yml
206
+ - test/config/aleph/nyu51/pickup_locations.yml
207
+ - test/config_test.rb
174
208
  - test/exlibris-aleph_test.rb
175
209
  - test/mnt/aleph_tab/alephe/tab/tab_sub_library.eng
176
210
  - test/mnt/aleph_tab/nyu50/tab/pc_tab_exp_field_extended.eng
@@ -195,16 +229,21 @@ files:
195
229
  - test/mnt/aleph_tab/tab40.eng
196
230
  - test/mnt/aleph_tab/tab_sub_library.eng
197
231
  - test/mnt/aleph_tab/tab_www_item_desc.eng
232
+ - test/patron_test.rb
233
+ - test/record_benchmarks.rb
234
+ - test/record_test.rb
235
+ - test/support/config.yml
236
+ - test/tab_helper_benchmarks.rb
237
+ - test/tab_helper_test.rb
198
238
  - test/test_helper.rb
199
- - test/unit/bor_auth_test.rb
200
- - test/unit/patron_test.rb
201
- - test/unit/record_benchmarks.rb
202
- - test/unit/record_test.rb
203
- - test/unit/tab_helper_benchmarks.rb
204
- - test/unit/tab_helper_test.rb
205
239
  - test/vcr_cassettes/bor_auth.yml
206
240
  - test/vcr_cassettes/patron.yml
241
+ - test/vcr_cassettes/patron_address.yml
242
+ - test/vcr_cassettes/patron_bogus_url.yml
243
+ - test/vcr_cassettes/patron_error.yml
207
244
  - test/vcr_cassettes/record.yml
245
+ - test/vcr_cassettes/record_bogus_url.yml
246
+ - test/xservice/bor_auth_test.rb
208
247
  homepage: https://github.com/scotdalton/exlibris-aleph
209
248
  licenses: []
210
249
  post_install_message:
@@ -219,7 +258,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
258
  version: '0'
220
259
  segments:
221
260
  - 0
222
- hash: 2942571737936524932
261
+ hash: -2211373169551452188
223
262
  required_rubygems_version: !ruby/object:Gem::Requirement
224
263
  none: false
225
264
  requirements:
@@ -228,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
267
  version: '0'
229
268
  segments:
230
269
  - 0
231
- hash: 2942571737936524932
270
+ hash: -2211373169551452188
232
271
  requirements: []
233
272
  rubyforge_project:
234
273
  rubygems_version: 1.8.24
@@ -236,56 +275,22 @@ signing_key:
236
275
  specification_version: 3
237
276
  summary: Library to work with Exlibris' Aleph ILS.
238
277
  test_files:
239
- - test/dummy/app/assets/javascripts/application.js
240
- - test/dummy/app/assets/stylesheets/application.css
241
- - test/dummy/app/controllers/application_controller.rb
242
- - test/dummy/app/helpers/application_helper.rb
243
- - test/dummy/app/views/layouts/application.html.erb
244
- - test/dummy/config/aleph/alephe/sub_libraries.yml
245
- - test/dummy/config/aleph/nyu50/collections.yml
246
- - test/dummy/config/aleph/nyu50/item_permissions_by_item_process_status.yml
247
- - test/dummy/config/aleph/nyu50/item_permissions_by_item_status.yml
248
- - test/dummy/config/aleph/nyu50/items.yml
249
- - test/dummy/config/aleph/nyu50/patron_permissions.yml
250
- - test/dummy/config/aleph/nyu50/patrons.yml
251
- - test/dummy/config/aleph/nyu50/pickup_locations.yml
252
- - test/dummy/config/aleph/nyu51/collections.yml
253
- - test/dummy/config/aleph/nyu51/item_permissions_by_item_process_status.yml
254
- - test/dummy/config/aleph/nyu51/item_permissions_by_item_status.yml
255
- - test/dummy/config/aleph/nyu51/items.yml
256
- - test/dummy/config/aleph/nyu51/patron_permissions.yml
257
- - test/dummy/config/aleph/nyu51/patrons.yml
258
- - test/dummy/config/aleph/nyu51/pickup_locations.yml
259
- - test/dummy/config/application.rb
260
- - test/dummy/config/boot.rb
261
- - test/dummy/config/database.yml
262
- - test/dummy/config/environment.rb
263
- - test/dummy/config/environments/development.rb
264
- - test/dummy/config/environments/production.rb
265
- - test/dummy/config/environments/test.rb
266
- - test/dummy/config/initializers/aleph.rb
267
- - test/dummy/config/initializers/backtrace_silencers.rb
268
- - test/dummy/config/initializers/inflections.rb
269
- - test/dummy/config/initializers/mime_types.rb
270
- - test/dummy/config/initializers/secret_token.rb
271
- - test/dummy/config/initializers/session_store.rb
272
- - test/dummy/config/initializers/wrap_parameters.rb
273
- - test/dummy/config/locales/en.yml
274
- - test/dummy/config/routes.rb
275
- - test/dummy/config.ru
276
- - test/dummy/db/README
277
- - test/dummy/db/test.sqlite3
278
- - test/dummy/log/aleph/aleph_tab_helper.log
279
- - test/dummy/log/aleph/tab_helper.log
280
- - test/dummy/log/tab_helper.log
281
- - test/dummy/log/test.log
282
- - test/dummy/public/404.html
283
- - test/dummy/public/422.html
284
- - test/dummy/public/500.html
285
- - test/dummy/public/favicon.ico
286
- - test/dummy/Rakefile
287
- - test/dummy/README.rdoc
288
- - test/dummy/script/rails
278
+ - test/config/aleph/alephe/sub_libraries.yml
279
+ - test/config/aleph/nyu50/collections.yml
280
+ - test/config/aleph/nyu50/item_permissions_by_item_process_status.yml
281
+ - test/config/aleph/nyu50/item_permissions_by_item_status.yml
282
+ - test/config/aleph/nyu50/items.yml
283
+ - test/config/aleph/nyu50/patron_permissions.yml
284
+ - test/config/aleph/nyu50/patrons.yml
285
+ - test/config/aleph/nyu50/pickup_locations.yml
286
+ - test/config/aleph/nyu51/collections.yml
287
+ - test/config/aleph/nyu51/item_permissions_by_item_process_status.yml
288
+ - test/config/aleph/nyu51/item_permissions_by_item_status.yml
289
+ - test/config/aleph/nyu51/items.yml
290
+ - test/config/aleph/nyu51/patron_permissions.yml
291
+ - test/config/aleph/nyu51/patrons.yml
292
+ - test/config/aleph/nyu51/pickup_locations.yml
293
+ - test/config_test.rb
289
294
  - test/exlibris-aleph_test.rb
290
295
  - test/mnt/aleph_tab/alephe/tab/tab_sub_library.eng
291
296
  - test/mnt/aleph_tab/nyu50/tab/pc_tab_exp_field_extended.eng
@@ -310,13 +315,18 @@ test_files:
310
315
  - test/mnt/aleph_tab/tab40.eng
311
316
  - test/mnt/aleph_tab/tab_sub_library.eng
312
317
  - test/mnt/aleph_tab/tab_www_item_desc.eng
318
+ - test/patron_test.rb
319
+ - test/record_benchmarks.rb
320
+ - test/record_test.rb
321
+ - test/support/config.yml
322
+ - test/tab_helper_benchmarks.rb
323
+ - test/tab_helper_test.rb
313
324
  - test/test_helper.rb
314
- - test/unit/bor_auth_test.rb
315
- - test/unit/patron_test.rb
316
- - test/unit/record_benchmarks.rb
317
- - test/unit/record_test.rb
318
- - test/unit/tab_helper_benchmarks.rb
319
- - test/unit/tab_helper_test.rb
320
325
  - test/vcr_cassettes/bor_auth.yml
321
326
  - test/vcr_cassettes/patron.yml
327
+ - test/vcr_cassettes/patron_address.yml
328
+ - test/vcr_cassettes/patron_bogus_url.yml
329
+ - test/vcr_cassettes/patron_error.yml
322
330
  - test/vcr_cassettes/record.yml
331
+ - test/vcr_cassettes/record_bogus_url.yml
332
+ - test/xservice/bor_auth_test.rb