blacklight-spotlight 1.4.1 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +5 -1
- data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -2
- data/app/assets/javascripts/spotlight/crop.es6 +2 -0
- data/app/assets/javascripts/spotlight/multi_image_selector.js +5 -4
- data/app/assets/javascripts/spotlight/reindex_monitor.js +16 -3
- data/app/controllers/concerns/spotlight/controller.rb +6 -1
- data/app/controllers/spotlight/browse_controller.rb +27 -0
- data/app/controllers/spotlight/catalog_controller.rb +2 -2
- data/app/helpers/spotlight/browse_helper.rb +0 -29
- data/app/helpers/spotlight/title_helper.rb +2 -2
- data/app/models/concerns/spotlight/custom_translation_extension.rb +23 -0
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +4 -2
- data/app/models/spotlight/blacklight_configuration.rb +2 -2
- data/app/models/spotlight/exhibit.rb +1 -1
- data/app/views/layouts/spotlight/spotlight.html.erb +1 -0
- data/app/views/spotlight/dashboards/_analytics.html.erb +4 -4
- data/app/views/spotlight/search_configurations/_search_fields.html.erb +1 -1
- data/db/migrate/20180306142612_create_translations.rb +18 -0
- data/lib/generators/spotlight/install_generator.rb +4 -0
- data/lib/generators/spotlight/templates/config/initializers/translation.rb +17 -0
- data/lib/spotlight/engine.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/browse_controller_spec.rb +32 -0
- data/spec/controllers/spotlight/confirmations_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/filters_controller_spec.rb +0 -1
- data/spec/controllers/spotlight/roles_controller_spec.rb +17 -0
- data/spec/controllers/spotlight/tags_controller_spec.rb +6 -1
- data/spec/examples.txt +1280 -1167
- data/spec/factories/translation.rb +6 -0
- data/spec/features/add_iiif_manifest_spec.rb +2 -0
- data/spec/features/browse_category_spec.rb +28 -0
- data/spec/features/edit_search_fields_spec.rb +1 -2
- data/spec/features/exhibit_masthead_spec.rb +2 -2
- data/spec/features/exhibit_themes_spec.rb +1 -1
- data/spec/features/exhibits/add_tags_spec.rb +1 -1
- data/spec/features/item_admin_spec.rb +1 -1
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +41 -28
- data/spec/features/javascript/multi_image_select_spec.rb +1 -1
- data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +16 -29
- data/spec/features/site_masthead_spec.rb +1 -1
- data/spec/features/slideshow_spec.rb +1 -2
- data/spec/features/translation_scope_spec.rb +24 -0
- data/spec/models/spotlight/ability_spec.rb +7 -10
- data/spec/models/spotlight/contact_email_spec.rb +1 -1
- data/spec/models/spotlight/contact_form_spec.rb +1 -1
- data/spec/models/spotlight/resources/iiif_harvester_spec.rb +3 -0
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +2 -2
- data/spec/spec_helper.rb +12 -4
- data/spec/support/disable_friendly_id_deprecation_warnings.rb +8 -0
- data/spec/support/features/capybara_default_max_wait_metadata_helper.rb +16 -0
- data/spec/support/features/test_features_helpers.rb +12 -2
- data/spec/views/spotlight/browse/show.html.erb_spec.rb +0 -7
- data/spec/views/spotlight/roles/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +1 -0
- data/vendor/assets/javascripts/Leaflet.Editable.js +22 -11
- data/vendor/assets/javascripts/leaflet-iiif.js +91 -23
- metadata +246 -227
- data/spec/features/curator_items.rb +0 -10
- data/spec/features/tags_admin_spec.rb +0 -27
- data/spec/features/user_admin_spec.rb +0 -29
@@ -15,7 +15,7 @@ describe Spotlight::ConfirmationsController, type: :controller do
|
|
15
15
|
|
16
16
|
describe 'GET show' do
|
17
17
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
18
|
-
let(:contact_email) {
|
18
|
+
let(:contact_email) { FactoryBot.create(:contact_email, email: 'justin@example.com', exhibit: exhibit) }
|
19
19
|
let(:raw_token) { contact_email.instance_variable_get(:@raw_confirmation_token) }
|
20
20
|
describe 'when the token is invalid' do
|
21
21
|
it 'gives reset instructions' do
|
@@ -3,7 +3,6 @@ describe Spotlight::FiltersController do
|
|
3
3
|
|
4
4
|
describe '#create' do
|
5
5
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
6
|
-
let(:exhibit_filter) { exhibit.filters.first }
|
7
6
|
|
8
7
|
before do
|
9
8
|
allow(Spotlight::Engine.config).to receive(:filter_resources_by_exhibit).and_return(false)
|
@@ -39,6 +39,23 @@ describe Spotlight::RolesController, type: :controller do
|
|
39
39
|
|
40
40
|
expect(exhibit.roles.last.role).to eq 'curator'
|
41
41
|
expect(exhibit.roles.last.user.email).to eq user.email
|
42
|
+
expect(flash[:notice]).to eq 'User has been updated.'
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'invites new users' do
|
46
|
+
expect do
|
47
|
+
patch :update_all, params: {
|
48
|
+
exhibit_id: exhibit,
|
49
|
+
'exhibit' => {
|
50
|
+
'roles_attributes' => {
|
51
|
+
'0' => { 'role' => 'curator', 'user_key' => 'something@example.com' }
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
55
|
+
end.to change { Devise::Mailer.deliveries.count }.by(1)
|
56
|
+
|
57
|
+
expect(exhibit.roles.last.user.email).to eq 'something@example.com'
|
58
|
+
expect(exhibit.roles.last.user.invitation_sent_at).to be_present
|
42
59
|
end
|
43
60
|
|
44
61
|
it 'updates roles' do
|
@@ -2,6 +2,10 @@ describe Spotlight::TagsController, type: :controller do
|
|
2
2
|
routes { Spotlight::Engine.routes }
|
3
3
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
4
4
|
|
5
|
+
before do
|
6
|
+
exhibit.tag(SolrDocument.new(id: 'x').sidecar(exhibit), with: 'paris, normandy', on: :tags)
|
7
|
+
end
|
8
|
+
|
5
9
|
describe 'when not signed in' do
|
6
10
|
describe 'GET index' do
|
7
11
|
it 'redirects to sign inl' do
|
@@ -19,7 +23,8 @@ describe Spotlight::TagsController, type: :controller do
|
|
19
23
|
expect(controller).to receive(:add_breadcrumb).with('Tags', exhibit_tags_path(exhibit))
|
20
24
|
get :index, params: { exhibit_id: exhibit }
|
21
25
|
expect(response).to be_successful
|
22
|
-
expect(assigns[:tags]).to eq
|
26
|
+
expect(assigns[:tags].length).to eq 2
|
27
|
+
expect(assigns[:tags].map(&:name)).to match_array %w[paris normandy]
|
23
28
|
expect(assigns[:exhibit]).to eq exhibit
|
24
29
|
end
|
25
30
|
|
data/spec/examples.txt
CHANGED
@@ -1,1170 +1,1283 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
--------------------------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
-
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.
|
4
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
5
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
6
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
7
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:
|
8
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:
|
9
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1
|
10
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
11
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
12
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:
|
13
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
14
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
15
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
16
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
17
|
-
./spec/controllers/spotlight/
|
18
|
-
./spec/controllers/spotlight/
|
19
|
-
./spec/controllers/spotlight/
|
20
|
-
./spec/controllers/spotlight/
|
21
|
-
./spec/controllers/spotlight/
|
22
|
-
./spec/controllers/spotlight/
|
23
|
-
./spec/controllers/spotlight/
|
24
|
-
./spec/controllers/spotlight/
|
25
|
-
./spec/controllers/spotlight/
|
26
|
-
./spec/controllers/spotlight/
|
27
|
-
./spec/controllers/spotlight/
|
28
|
-
./spec/controllers/spotlight/
|
29
|
-
./spec/controllers/spotlight/
|
30
|
-
./spec/controllers/spotlight/
|
31
|
-
./spec/controllers/spotlight/
|
32
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
33
|
-
./spec/controllers/spotlight/
|
34
|
-
./spec/controllers/spotlight/
|
35
|
-
./spec/controllers/spotlight/
|
36
|
-
./spec/controllers/spotlight/
|
37
|
-
./spec/controllers/spotlight/
|
38
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
39
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
40
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
41
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
42
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
43
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
44
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
45
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
58
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
63
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
74
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
75
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
76
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
77
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
78
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
79
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
80
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
81
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
82
|
-
./spec/controllers/spotlight/
|
83
|
-
./spec/controllers/spotlight/
|
84
|
-
./spec/controllers/spotlight/
|
85
|
-
./spec/controllers/spotlight/
|
86
|
-
./spec/controllers/spotlight/
|
87
|
-
./spec/controllers/spotlight/
|
88
|
-
./spec/controllers/spotlight/
|
89
|
-
./spec/controllers/spotlight/
|
90
|
-
./spec/controllers/spotlight/
|
91
|
-
./spec/controllers/spotlight/
|
92
|
-
./spec/controllers/spotlight/
|
93
|
-
./spec/controllers/spotlight/
|
94
|
-
./spec/controllers/spotlight/
|
95
|
-
./spec/controllers/spotlight/
|
96
|
-
./spec/controllers/spotlight/
|
97
|
-
./spec/controllers/spotlight/
|
98
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:
|
99
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
100
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
101
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
102
|
-
./spec/controllers/spotlight/
|
103
|
-
./spec/controllers/spotlight/
|
104
|
-
./spec/controllers/spotlight/
|
105
|
-
./spec/controllers/spotlight/
|
106
|
-
./spec/controllers/spotlight/
|
107
|
-
./spec/controllers/spotlight/
|
108
|
-
./spec/controllers/spotlight/
|
109
|
-
./spec/controllers/spotlight/
|
110
|
-
./spec/controllers/spotlight/
|
111
|
-
./spec/controllers/spotlight/
|
112
|
-
./spec/controllers/spotlight/
|
113
|
-
./spec/controllers/spotlight/
|
114
|
-
./spec/controllers/spotlight/
|
115
|
-
./spec/controllers/spotlight/
|
116
|
-
./spec/controllers/spotlight/
|
117
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
118
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
119
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
120
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:
|
121
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1
|
122
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
123
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
127
|
-
./spec/controllers/spotlight/
|
128
|
-
./spec/controllers/spotlight/
|
129
|
-
./spec/controllers/spotlight/
|
130
|
-
./spec/controllers/spotlight/
|
131
|
-
./spec/controllers/spotlight/
|
132
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:
|
133
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:
|
134
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
135
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
136
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
137
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
138
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
139
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
140
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
141
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
142
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
143
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
144
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
145
|
-
./spec/controllers/spotlight/
|
146
|
-
./spec/controllers/spotlight/
|
147
|
-
./spec/controllers/spotlight/
|
148
|
-
./spec/controllers/spotlight/
|
149
|
-
./spec/controllers/spotlight/
|
150
|
-
./spec/controllers/spotlight/
|
151
|
-
./spec/controllers/spotlight/
|
152
|
-
./spec/controllers/spotlight/
|
153
|
-
./spec/controllers/spotlight/
|
154
|
-
./spec/controllers/spotlight/
|
155
|
-
./spec/controllers/spotlight/
|
156
|
-
./spec/controllers/spotlight/
|
157
|
-
./spec/controllers/spotlight/
|
158
|
-
./spec/controllers/spotlight/
|
159
|
-
./spec/controllers/spotlight/
|
160
|
-
./spec/controllers/spotlight/
|
161
|
-
./spec/controllers/spotlight/
|
162
|
-
./spec/controllers/spotlight/
|
163
|
-
./spec/controllers/spotlight/
|
164
|
-
./spec/controllers/spotlight/
|
165
|
-
./spec/controllers/spotlight/
|
166
|
-
./spec/controllers/spotlight/
|
167
|
-
./spec/controllers/spotlight/
|
168
|
-
./spec/controllers/spotlight/
|
169
|
-
./spec/controllers/spotlight/
|
170
|
-
./spec/controllers/spotlight/
|
171
|
-
./spec/controllers/spotlight/
|
172
|
-
./spec/controllers/spotlight/
|
173
|
-
./spec/controllers/spotlight/
|
174
|
-
./spec/controllers/spotlight/
|
175
|
-
./spec/controllers/spotlight/
|
176
|
-
./spec/controllers/spotlight/
|
177
|
-
./spec/controllers/spotlight/
|
178
|
-
./spec/controllers/spotlight/
|
179
|
-
./spec/controllers/spotlight/
|
180
|
-
./spec/controllers/spotlight/
|
181
|
-
./spec/controllers/spotlight/
|
182
|
-
./spec/controllers/spotlight/
|
183
|
-
./spec/controllers/spotlight/
|
184
|
-
./spec/controllers/spotlight/
|
185
|
-
./spec/controllers/spotlight/
|
186
|
-
./spec/controllers/spotlight/
|
187
|
-
./spec/controllers/spotlight/
|
188
|
-
./spec/controllers/spotlight/
|
189
|
-
./spec/controllers/spotlight/
|
190
|
-
./spec/controllers/spotlight/
|
191
|
-
./spec/controllers/spotlight/
|
192
|
-
./spec/controllers/spotlight/
|
193
|
-
./spec/controllers/spotlight/
|
194
|
-
./spec/controllers/spotlight/
|
195
|
-
./spec/controllers/spotlight/
|
196
|
-
./spec/controllers/spotlight/
|
197
|
-
./spec/controllers/spotlight/
|
198
|
-
./spec/controllers/spotlight/
|
199
|
-
./spec/controllers/spotlight/
|
200
|
-
./spec/controllers/spotlight/
|
201
|
-
./spec/controllers/spotlight/
|
202
|
-
./spec/controllers/spotlight/
|
203
|
-
./spec/controllers/spotlight/
|
204
|
-
./spec/controllers/spotlight/
|
205
|
-
./spec/controllers/spotlight/
|
206
|
-
./spec/controllers/spotlight/
|
207
|
-
./spec/controllers/spotlight/
|
208
|
-
./spec/controllers/spotlight/
|
209
|
-
./spec/controllers/spotlight/
|
210
|
-
./spec/controllers/spotlight/
|
211
|
-
./spec/controllers/spotlight/
|
212
|
-
./spec/controllers/spotlight/
|
213
|
-
./spec/controllers/spotlight/
|
214
|
-
./spec/controllers/spotlight/
|
215
|
-
./spec/controllers/spotlight/
|
216
|
-
./spec/controllers/spotlight/
|
217
|
-
./spec/controllers/spotlight/
|
218
|
-
./spec/controllers/spotlight/
|
219
|
-
./spec/controllers/spotlight/
|
220
|
-
./spec/controllers/spotlight/
|
221
|
-
./spec/controllers/spotlight/
|
222
|
-
./spec/controllers/spotlight/
|
223
|
-
./spec/controllers/spotlight/
|
224
|
-
./spec/controllers/spotlight/
|
225
|
-
./spec/controllers/spotlight/
|
226
|
-
./spec/controllers/spotlight/
|
227
|
-
./spec/controllers/spotlight/
|
228
|
-
./spec/controllers/spotlight/
|
229
|
-
./spec/controllers/spotlight/
|
230
|
-
./spec/controllers/spotlight/
|
231
|
-
./spec/controllers/spotlight/
|
232
|
-
./spec/controllers/spotlight/
|
233
|
-
./spec/controllers/spotlight/
|
234
|
-
./spec/controllers/spotlight/
|
235
|
-
./spec/controllers/spotlight/
|
236
|
-
./spec/controllers/spotlight/
|
237
|
-
./spec/
|
238
|
-
./spec/
|
239
|
-
./spec/
|
240
|
-
./spec/
|
241
|
-
./spec/
|
242
|
-
./spec/
|
243
|
-
./spec/
|
244
|
-
./spec/
|
245
|
-
./spec/
|
246
|
-
./spec/
|
247
|
-
./spec/
|
248
|
-
./spec/
|
249
|
-
./spec/
|
250
|
-
./spec/
|
251
|
-
./spec/
|
252
|
-
./spec/
|
253
|
-
./spec/
|
254
|
-
./spec/
|
255
|
-
./spec/
|
256
|
-
./spec/
|
257
|
-
./spec/
|
258
|
-
./spec/
|
259
|
-
./spec/features/
|
260
|
-
./spec/features/
|
261
|
-
./spec/features/
|
262
|
-
./spec/features/
|
263
|
-
./spec/features/
|
264
|
-
./spec/features/
|
265
|
-
./spec/features/
|
266
|
-
./spec/features/
|
267
|
-
./spec/features/
|
268
|
-
./spec/features/
|
269
|
-
./spec/features/
|
270
|
-
./spec/features/
|
271
|
-
./spec/features/
|
272
|
-
./spec/features/
|
273
|
-
./spec/features/
|
274
|
-
./spec/features/
|
275
|
-
./spec/features/
|
276
|
-
./spec/features/
|
277
|
-
./spec/features/
|
278
|
-
./spec/features/
|
279
|
-
./spec/features/
|
280
|
-
./spec/features/
|
281
|
-
./spec/features/
|
282
|
-
./spec/features/
|
283
|
-
./spec/features/
|
284
|
-
./spec/features/
|
285
|
-
./spec/features/
|
286
|
-
./spec/features/
|
287
|
-
./spec/features/
|
288
|
-
./spec/features/
|
289
|
-
./spec/features/
|
290
|
-
./spec/features/
|
291
|
-
./spec/features/
|
292
|
-
./spec/features/
|
293
|
-
./spec/features/
|
294
|
-
./spec/features/
|
295
|
-
./spec/features/
|
296
|
-
./spec/features/
|
297
|
-
./spec/features/
|
298
|
-
./spec/features/
|
299
|
-
./spec/features/
|
300
|
-
./spec/features/
|
301
|
-
./spec/features/
|
302
|
-
./spec/features/
|
303
|
-
./spec/features/
|
304
|
-
./spec/features/
|
305
|
-
./spec/features/
|
306
|
-
./spec/features/
|
307
|
-
./spec/features/
|
308
|
-
./spec/features/
|
309
|
-
./spec/features/
|
310
|
-
./spec/features/
|
311
|
-
./spec/features/
|
312
|
-
./spec/features/
|
313
|
-
./spec/features/
|
314
|
-
./spec/features/
|
315
|
-
./spec/features/
|
316
|
-
./spec/features/
|
317
|
-
./spec/features/
|
318
|
-
./spec/features/
|
319
|
-
./spec/features/
|
320
|
-
./spec/features/
|
321
|
-
./spec/features/
|
322
|
-
./spec/features/
|
323
|
-
./spec/features/
|
324
|
-
./spec/features/
|
325
|
-
./spec/features/
|
326
|
-
./spec/features/
|
327
|
-
./spec/features/
|
328
|
-
./spec/features/
|
329
|
-
./spec/features/
|
330
|
-
./spec/features/
|
331
|
-
./spec/features/
|
332
|
-
./spec/features/
|
333
|
-
./spec/features/
|
334
|
-
./spec/features/
|
335
|
-
./spec/features/
|
336
|
-
./spec/features/
|
337
|
-
./spec/features/
|
338
|
-
./spec/features/
|
339
|
-
./spec/features/
|
340
|
-
./spec/features/
|
341
|
-
./spec/features/
|
342
|
-
./spec/features/
|
343
|
-
./spec/features/
|
344
|
-
./spec/features/
|
345
|
-
./spec/features/
|
346
|
-
./spec/features/
|
347
|
-
./spec/features/
|
348
|
-
./spec/features/
|
349
|
-
./spec/features/
|
350
|
-
./spec/features/
|
351
|
-
./spec/features/
|
352
|
-
./spec/features/
|
353
|
-
./spec/features/
|
354
|
-
./spec/features/
|
355
|
-
./spec/features/
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.0096 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.14136 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.14555 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.15168 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.19989 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.2082 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.26114 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.55739 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.18932 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.21706 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.22944 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.2169 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.17528 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.19654 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.19904 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.22897 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.21291 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.18698 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.20566 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.05943 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.07357 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.04947 seconds |
|
25
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.68725 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.18403 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.24939 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.24296 seconds |
|
29
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.11456 seconds |
|
30
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.09387 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.11252 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1:1] | passed | 0.17114 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.11804 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:1] | passed | 0.17384 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:2] | passed | 0.13557 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:3] | passed | 0.16662 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:4] | passed | 0.37557 seconds |
|
38
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01038 seconds |
|
39
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.01489 seconds |
|
40
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.01262 seconds |
|
41
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.14434 seconds |
|
42
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.12578 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.175 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.24143 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.21423 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.28768 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.19576 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.15879 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.16345 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.14938 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.18709 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.1571 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.22534 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.14162 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.14573 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.14184 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.14583 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.13761 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.13189 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.20833 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.15904 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.16907 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.20362 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.20166 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.20317 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.15225 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.15208 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.15496 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.1194 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.11802 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.20162 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.15385 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.16508 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.16619 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.17351 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01112 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01239 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.15654 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.11988 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.12135 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.01066 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.01111 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01181 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.12529 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.11706 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.11853 seconds |
|
87
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.01242 seconds |
|
88
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.42005 seconds |
|
89
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.14357 seconds |
|
90
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.16977 seconds |
|
91
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 1.05 seconds |
|
92
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.17231 seconds |
|
93
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.18249 seconds |
|
94
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.20944 seconds |
|
95
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.24395 seconds |
|
96
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.20713 seconds |
|
97
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.31156 seconds |
|
98
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.0874 seconds |
|
99
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.1207 seconds |
|
100
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.11051 seconds |
|
101
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.12801 seconds |
|
102
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.10248 seconds |
|
103
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.13037 seconds |
|
104
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.10658 seconds |
|
105
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.12095 seconds |
|
106
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.10325 seconds |
|
107
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.09547 seconds |
|
108
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.1492 seconds |
|
109
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.15979 seconds |
|
110
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.156 seconds |
|
111
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.13994 seconds |
|
112
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.18121 seconds |
|
113
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.15332 seconds |
|
114
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.13374 seconds |
|
115
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.13436 seconds |
|
116
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.11391 seconds |
|
117
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.23174 seconds |
|
118
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.05957 seconds |
|
119
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.16744 seconds |
|
120
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.11643 seconds |
|
121
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.11361 seconds |
|
122
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.12338 seconds |
|
123
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.11828 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.04154 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.10654 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.31996 seconds |
|
127
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.185 seconds |
|
128
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.15309 seconds |
|
129
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.24847 seconds |
|
130
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.23457 seconds |
|
131
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.30092 seconds |
|
132
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.11152 seconds |
|
133
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.19319 seconds |
|
134
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.34201 seconds |
|
135
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.19578 seconds |
|
136
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.14467 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.1457 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.12355 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.14938 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.16773 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.12923 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.13828 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.12556 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.1769 seconds |
|
145
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.13505 seconds |
|
146
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.14707 seconds |
|
147
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.17561 seconds |
|
148
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.17809 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.1838 seconds |
|
150
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.19026 seconds |
|
151
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.17867 seconds |
|
152
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.14102 seconds |
|
153
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.14477 seconds |
|
154
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.06344 seconds |
|
155
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.04911 seconds |
|
156
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.04819 seconds |
|
157
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.06177 seconds |
|
158
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.12484 seconds |
|
159
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.23316 seconds |
|
160
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.14619 seconds |
|
161
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.12954 seconds |
|
162
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.14545 seconds |
|
163
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.48264 seconds |
|
164
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.19564 seconds |
|
165
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.23145 seconds |
|
166
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.4291 seconds |
|
167
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.2092 seconds |
|
168
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.21881 seconds |
|
169
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.19726 seconds |
|
170
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.55408 seconds |
|
171
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.68923 seconds |
|
172
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.37471 seconds |
|
173
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.21372 seconds |
|
174
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.31705 seconds |
|
175
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.08041 seconds |
|
176
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.12227 seconds |
|
177
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.20568 seconds |
|
178
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.71074 seconds |
|
179
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.08488 seconds |
|
180
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.10014 seconds |
|
181
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.10291 seconds |
|
182
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.15441 seconds |
|
183
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.08787 seconds |
|
184
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.08274 seconds |
|
185
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.13485 seconds |
|
186
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.1212 seconds |
|
187
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.11056 seconds |
|
188
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.11482 seconds |
|
189
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.12627 seconds |
|
190
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.14181 seconds |
|
191
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.19318 seconds |
|
192
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.11846 seconds |
|
193
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.25058 seconds |
|
194
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.1599 seconds |
|
195
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.22288 seconds |
|
196
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.20564 seconds |
|
197
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.16865 seconds |
|
198
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.17668 seconds |
|
199
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.16907 seconds |
|
200
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.21889 seconds |
|
201
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.19382 seconds |
|
202
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.21191 seconds |
|
203
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.19328 seconds |
|
204
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.29826 seconds |
|
205
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.34113 seconds |
|
206
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.19559 seconds |
|
207
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.16487 seconds |
|
208
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.21176 seconds |
|
209
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.14822 seconds |
|
210
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.13514 seconds |
|
211
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.23121 seconds |
|
212
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.20316 seconds |
|
213
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.14796 seconds |
|
214
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.14032 seconds |
|
215
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.13062 seconds |
|
216
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.16895 seconds |
|
217
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.15903 seconds |
|
218
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.18842 seconds |
|
219
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.17028 seconds |
|
220
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.16024 seconds |
|
221
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.15897 seconds |
|
222
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.14361 seconds |
|
223
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.09032 seconds |
|
224
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.14809 seconds |
|
225
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.13788 seconds |
|
226
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.16285 seconds |
|
227
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.17312 seconds |
|
228
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.17201 seconds |
|
229
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.1388 seconds |
|
230
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.18185 seconds |
|
231
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.12494 seconds |
|
232
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.14515 seconds |
|
233
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.19859 seconds |
|
234
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.08308 seconds |
|
235
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.04402 seconds |
|
236
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.04269 seconds |
|
237
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.23605 seconds |
|
238
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.1266 seconds |
|
239
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.1702 seconds |
|
240
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.11509 seconds |
|
241
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.10715 seconds |
|
242
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.11673 seconds |
|
243
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.11267 seconds |
|
244
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.14776 seconds |
|
245
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.14295 seconds |
|
246
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | failed | 0.12216 seconds |
|
247
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | failed | 0.11933 seconds |
|
248
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.11828 seconds |
|
249
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 1.03 seconds |
|
250
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.17764 seconds |
|
251
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.47462 seconds |
|
252
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.52893 seconds |
|
253
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 1.16 seconds |
|
254
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.01259 seconds |
|
255
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.49785 seconds |
|
256
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.31408 seconds |
|
257
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.1298 seconds |
|
258
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.09534 seconds |
|
259
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 0.22041 seconds |
|
260
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.74914 seconds |
|
261
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 1.37 seconds |
|
262
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.15168 seconds |
|
263
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 1.73 seconds |
|
264
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.52675 seconds |
|
265
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.89302 seconds |
|
266
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 4 seconds |
|
267
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 1.92 seconds |
|
268
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 2.4 seconds |
|
269
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.74438 seconds |
|
270
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 1.44 seconds |
|
271
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.72009 seconds |
|
272
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.95255 seconds |
|
273
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 2.25 seconds |
|
274
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 3.84 seconds |
|
275
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 2.41 seconds |
|
276
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 3.77 seconds |
|
277
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 2.34 seconds |
|
278
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 1.58 seconds |
|
279
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.7305 seconds |
|
280
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.18 seconds |
|
281
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 1.29 seconds |
|
282
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.60476 seconds |
|
283
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.97612 seconds |
|
284
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.96918 seconds |
|
285
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.98054 seconds |
|
286
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 1.5 seconds |
|
287
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.21255 seconds |
|
288
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.5176 seconds |
|
289
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.50418 seconds |
|
290
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.46349 seconds |
|
291
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.39188 seconds |
|
292
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.42233 seconds |
|
293
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.44116 seconds |
|
294
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.47374 seconds |
|
295
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.56891 seconds |
|
296
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 1.12 seconds |
|
297
|
+
./spec/features/browse_category_spec.rb[1:1:6] | passed | 3.33 seconds |
|
298
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.44026 seconds |
|
299
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.28854 seconds |
|
300
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.05354 seconds |
|
301
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.20382 seconds |
|
302
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.8707 seconds |
|
303
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.50045 seconds |
|
304
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.48939 seconds |
|
305
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.5364 seconds |
|
306
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.5044 seconds |
|
307
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.715 seconds |
|
308
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 3.7 seconds |
|
309
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.35817 seconds |
|
310
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.3309 seconds |
|
311
|
+
./spec/features/edit_contact_spec.rb[1:1] | failed | 5.39 seconds |
|
312
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.3508 seconds |
|
313
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.3562 seconds |
|
314
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.34487 seconds |
|
315
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.63785 seconds |
|
316
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.38706 seconds |
|
317
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.60002 seconds |
|
318
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.7609 seconds |
|
319
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.61142 seconds |
|
320
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.6196 seconds |
|
321
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.15226 seconds |
|
322
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 3.34 seconds |
|
323
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 4.93 seconds |
|
324
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.81908 seconds |
|
325
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.91177 seconds |
|
326
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 1.61 seconds |
|
327
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 7.84 seconds |
|
328
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 3.02 seconds |
|
329
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 2.17 seconds |
|
330
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 2.34 seconds |
|
331
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 2.62 seconds |
|
332
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.25557 seconds |
|
333
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.81416 seconds |
|
334
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.47201 seconds |
|
335
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 3.32 seconds |
|
336
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.17465 seconds |
|
337
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.41736 seconds |
|
338
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.55246 seconds |
|
339
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.82398 seconds |
|
340
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 3.57 seconds |
|
341
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 17.75 seconds |
|
342
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 31.72 seconds |
|
343
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 18.9 seconds |
|
344
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 22.97 seconds |
|
345
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 19.27 seconds |
|
346
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 22.89 seconds |
|
347
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 20.36 seconds |
|
348
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 22.55 seconds |
|
349
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 22.42 seconds |
|
350
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 24.51 seconds |
|
351
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 18.7 seconds |
|
352
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 3.45 seconds |
|
353
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 29.98 seconds |
|
354
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 7.18 seconds |
|
355
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 26.2 seconds |
|
356
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 20.74 seconds |
|
357
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 4.16 seconds |
|
358
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 24.3 seconds |
|
359
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 4.33 seconds |
|
360
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 28.85 seconds |
|
361
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 4.67 seconds |
|
362
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 29.72 seconds |
|
363
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 4.67 seconds |
|
364
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 17.84 seconds |
|
365
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | passed | 20.2 seconds |
|
366
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 4.08 seconds |
|
367
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.43777 seconds |
|
368
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.25699 seconds |
|
369
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.14095 seconds |
|
370
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.23408 seconds |
|
371
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.23491 seconds |
|
372
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.27023 seconds |
|
373
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.24839 seconds |
|
374
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.38516 seconds |
|
375
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.37552 seconds |
|
376
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.4618 seconds |
|
377
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.75 seconds |
|
378
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.48848 seconds |
|
379
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 1.33 seconds |
|
380
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.77165 seconds |
|
381
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.43237 seconds |
|
382
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.23678 seconds |
|
383
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 0.9993 seconds |
|
384
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.20138 seconds |
|
385
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 2.16 seconds |
|
386
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 3.45 seconds |
|
387
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.50428 seconds |
|
388
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.54381 seconds |
|
389
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 1.19 seconds |
|
390
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.71 seconds |
|
391
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 2.11 seconds |
|
392
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 5.19 seconds |
|
393
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 11.25 seconds |
|
394
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 11.3 seconds |
|
395
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 11.76 seconds |
|
396
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 11.49 seconds |
|
397
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 11.28 seconds |
|
398
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 11.12 seconds |
|
399
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 3.09 seconds |
|
400
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 11.18 seconds |
|
401
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.43 seconds |
|
402
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 2.6 seconds |
|
403
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 2.86 seconds |
|
404
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 4.4 seconds |
|
405
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 3.27 seconds |
|
406
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 2.92 seconds |
|
407
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 2.9 seconds |
|
356
408
|
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 2.05 seconds |
|
357
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] |
|
358
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 3.
|
359
|
-
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed |
|
360
|
-
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 2.
|
361
|
-
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 2.
|
362
|
-
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.
|
363
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed |
|
364
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.
|
365
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:3] |
|
366
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:4] |
|
367
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed |
|
368
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.
|
369
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.
|
370
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed |
|
371
|
-
./spec/features/javascript/
|
372
|
-
./spec/features/javascript/
|
373
|
-
./spec/features/javascript/
|
374
|
-
./spec/features/javascript/
|
375
|
-
./spec/features/javascript/
|
376
|
-
./spec/features/javascript/
|
377
|
-
./spec/features/javascript/
|
378
|
-
./spec/features/javascript/
|
379
|
-
./spec/features/javascript/
|
380
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
381
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
382
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
383
|
-
./spec/features/javascript/
|
384
|
-
./spec/features/javascript/
|
385
|
-
./spec/features/javascript/
|
386
|
-
./spec/features/
|
387
|
-
./spec/features/
|
388
|
-
./spec/features/
|
389
|
-
./spec/features/main_navigation_spec.rb[1:
|
390
|
-
./spec/features/main_navigation_spec.rb[1:
|
391
|
-
./spec/features/main_navigation_spec.rb[1:
|
392
|
-
./spec/features/
|
393
|
-
./spec/features/
|
394
|
-
./spec/features/
|
395
|
-
./spec/features/
|
396
|
-
./spec/features/report_a_problem_spec.rb[1:
|
397
|
-
./spec/features/
|
398
|
-
./spec/features/
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/site_admin_management_spec.rb[1:
|
401
|
-
./spec/features/site_admin_management_spec.rb[1:
|
402
|
-
./spec/features/site_admin_management_spec.rb[1:
|
403
|
-
./spec/features/site_admin_management_spec.rb[1:
|
404
|
-
./spec/features/
|
405
|
-
./spec/features/
|
406
|
-
./spec/features/
|
407
|
-
./spec/features/site_masthead_spec.rb[1:
|
408
|
-
./spec/features/
|
409
|
-
./spec/features/
|
410
|
-
./spec/features/
|
411
|
-
./spec/features/
|
412
|
-
./spec/features/
|
413
|
-
./spec/features/
|
414
|
-
./spec/
|
415
|
-
./spec/
|
416
|
-
./spec/
|
417
|
-
./spec/
|
418
|
-
./spec/
|
419
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
420
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
421
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
422
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
423
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
424
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
425
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
426
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
427
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
428
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
429
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
430
|
-
./spec/helpers/spotlight/
|
431
|
-
./spec/helpers/spotlight/
|
432
|
-
./spec/helpers/spotlight/
|
433
|
-
./spec/helpers/spotlight/
|
434
|
-
./spec/helpers/spotlight/
|
435
|
-
./spec/helpers/spotlight/
|
436
|
-
./spec/helpers/spotlight/
|
437
|
-
./spec/helpers/spotlight/
|
438
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
439
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
440
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
441
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
442
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
443
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
444
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
445
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
446
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
447
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
448
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
449
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
450
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
451
|
-
./spec/helpers/spotlight/
|
452
|
-
./spec/helpers/spotlight/
|
453
|
-
./spec/helpers/spotlight/
|
454
|
-
./spec/helpers/spotlight/
|
455
|
-
./spec/helpers/spotlight/
|
456
|
-
./spec/helpers/spotlight/
|
457
|
-
./spec/helpers/spotlight/
|
458
|
-
./spec/helpers/spotlight/
|
459
|
-
./spec/helpers/spotlight/
|
460
|
-
./spec/helpers/spotlight/
|
461
|
-
./spec/helpers/spotlight/
|
462
|
-
./spec/helpers/spotlight/
|
463
|
-
./spec/helpers/spotlight/
|
464
|
-
./spec/helpers/spotlight/
|
465
|
-
./spec/helpers/spotlight/
|
466
|
-
./spec/helpers/spotlight/
|
467
|
-
./spec/helpers/spotlight/
|
468
|
-
./spec/helpers/spotlight/
|
469
|
-
./spec/helpers/spotlight/
|
470
|
-
./spec/helpers/spotlight/
|
471
|
-
./spec/helpers/spotlight/
|
472
|
-
./spec/helpers/spotlight/
|
473
|
-
./spec/helpers/spotlight/
|
474
|
-
./spec/helpers/spotlight/
|
475
|
-
./spec/helpers/spotlight/
|
476
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
477
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
478
|
-
./spec/helpers/spotlight/
|
479
|
-
./spec/helpers/spotlight/
|
480
|
-
./spec/helpers/spotlight/
|
481
|
-
./spec/helpers/spotlight/
|
482
|
-
./spec/helpers/spotlight/
|
483
|
-
./spec/helpers/spotlight/
|
484
|
-
./spec/helpers/spotlight/
|
485
|
-
./spec/helpers/spotlight/
|
486
|
-
./spec/helpers/spotlight/
|
487
|
-
./spec/helpers/spotlight/
|
488
|
-
./spec/
|
489
|
-
./spec/
|
490
|
-
./spec/
|
491
|
-
./spec/
|
492
|
-
./spec/
|
493
|
-
./spec/
|
494
|
-
./spec/
|
495
|
-
./spec/
|
496
|
-
./spec/
|
497
|
-
./spec/
|
498
|
-
./spec/
|
499
|
-
./spec/
|
500
|
-
./spec/
|
501
|
-
./spec/
|
502
|
-
./spec/
|
503
|
-
./spec/
|
504
|
-
./spec/
|
505
|
-
./spec/
|
506
|
-
./spec/
|
507
|
-
./spec/
|
508
|
-
./spec/
|
509
|
-
./spec/
|
510
|
-
./spec/
|
511
|
-
./spec/
|
512
|
-
./spec/
|
513
|
-
./spec/
|
514
|
-
./spec/
|
515
|
-
./spec/
|
516
|
-
./spec/lib/
|
517
|
-
./spec/lib/
|
518
|
-
./spec/
|
519
|
-
./spec/
|
520
|
-
./spec/
|
521
|
-
./spec/
|
522
|
-
./spec/
|
523
|
-
./spec/
|
524
|
-
./spec/
|
525
|
-
./spec/
|
526
|
-
./spec/
|
527
|
-
./spec/
|
528
|
-
./spec/
|
529
|
-
./spec/
|
530
|
-
./spec/
|
531
|
-
./spec/
|
532
|
-
./spec/
|
533
|
-
./spec/
|
534
|
-
./spec/
|
535
|
-
./spec/
|
536
|
-
./spec/
|
537
|
-
./spec/
|
538
|
-
./spec/
|
539
|
-
./spec/
|
540
|
-
./spec/
|
541
|
-
./spec/
|
542
|
-
./spec/
|
543
|
-
./spec/models/
|
544
|
-
./spec/models/
|
545
|
-
./spec/models/
|
546
|
-
./spec/models/
|
547
|
-
./spec/models/
|
548
|
-
./spec/models/
|
549
|
-
./spec/models/
|
550
|
-
./spec/models/
|
551
|
-
./spec/models/
|
552
|
-
./spec/models/
|
553
|
-
./spec/models/
|
554
|
-
./spec/models/
|
555
|
-
./spec/models/
|
556
|
-
./spec/models/
|
557
|
-
./spec/models/
|
558
|
-
./spec/models/
|
559
|
-
./spec/models/solr_document_spec.rb[1:
|
560
|
-
./spec/models/solr_document_spec.rb[1:
|
561
|
-
./spec/models/solr_document_spec.rb[1:
|
562
|
-
./spec/models/solr_document_spec.rb[1:
|
563
|
-
./spec/models/solr_document_spec.rb[1:
|
564
|
-
./spec/models/solr_document_spec.rb[1:
|
565
|
-
./spec/models/solr_document_spec.rb[1:
|
566
|
-
./spec/models/solr_document_spec.rb[1:
|
567
|
-
./spec/models/solr_document_spec.rb[1:
|
568
|
-
./spec/models/
|
569
|
-
./spec/models/
|
570
|
-
./spec/models/
|
571
|
-
./spec/models/
|
572
|
-
./spec/models/
|
573
|
-
./spec/models/
|
574
|
-
./spec/models/
|
575
|
-
./spec/models/
|
576
|
-
./spec/models/
|
577
|
-
./spec/models/
|
578
|
-
./spec/models/
|
579
|
-
./spec/models/
|
580
|
-
./spec/models/
|
581
|
-
./spec/models/
|
582
|
-
./spec/models/
|
583
|
-
./spec/models/
|
584
|
-
./spec/models/
|
585
|
-
./spec/models/
|
586
|
-
./spec/models/
|
587
|
-
./spec/models/
|
588
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
589
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
590
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
591
|
-
./spec/models/spotlight/ability_spec.rb[1:4
|
592
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
593
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
594
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
595
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
596
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
597
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
598
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
599
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
600
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
601
|
-
./spec/models/spotlight/
|
602
|
-
./spec/models/spotlight/
|
603
|
-
./spec/models/spotlight/
|
604
|
-
./spec/models/spotlight/
|
605
|
-
./spec/models/spotlight/
|
606
|
-
./spec/models/spotlight/
|
607
|
-
./spec/models/spotlight/
|
608
|
-
./spec/models/spotlight/
|
609
|
-
./spec/models/spotlight/
|
610
|
-
./spec/models/spotlight/
|
611
|
-
./spec/models/spotlight/
|
612
|
-
./spec/models/spotlight/
|
613
|
-
./spec/models/spotlight/
|
614
|
-
./spec/models/spotlight/
|
615
|
-
./spec/models/spotlight/
|
616
|
-
./spec/models/spotlight/
|
617
|
-
./spec/models/spotlight/
|
618
|
-
./spec/models/spotlight/
|
619
|
-
./spec/models/spotlight/
|
620
|
-
./spec/models/spotlight/
|
621
|
-
./spec/models/spotlight/
|
622
|
-
./spec/models/spotlight/
|
623
|
-
./spec/models/spotlight/
|
624
|
-
./spec/models/spotlight/
|
625
|
-
./spec/models/spotlight/
|
626
|
-
./spec/models/spotlight/
|
627
|
-
./spec/models/spotlight/
|
628
|
-
./spec/models/spotlight/
|
629
|
-
./spec/models/spotlight/
|
630
|
-
./spec/models/spotlight/
|
631
|
-
./spec/models/spotlight/
|
632
|
-
./spec/models/spotlight/
|
633
|
-
./spec/models/spotlight/
|
634
|
-
./spec/models/spotlight/
|
635
|
-
./spec/models/spotlight/
|
636
|
-
./spec/models/spotlight/
|
637
|
-
./spec/models/spotlight/
|
638
|
-
./spec/models/spotlight/
|
639
|
-
./spec/models/spotlight/
|
640
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
641
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
642
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
643
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
644
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
645
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
646
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
647
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
648
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
649
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
650
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
651
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1]
|
652
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
653
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
654
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
655
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
656
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
657
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
658
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
659
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
660
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
661
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10
|
662
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
663
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
664
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:
|
665
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
666
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
667
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
668
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
669
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
670
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
671
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
672
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
673
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
674
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
675
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
676
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
677
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
678
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
679
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
680
|
-
./spec/models/spotlight/
|
681
|
-
./spec/models/spotlight/
|
682
|
-
./spec/models/spotlight/
|
683
|
-
./spec/models/spotlight/
|
684
|
-
./spec/models/spotlight/
|
685
|
-
./spec/models/spotlight/
|
686
|
-
./spec/models/spotlight/
|
687
|
-
./spec/models/spotlight/
|
688
|
-
./spec/models/spotlight/
|
689
|
-
./spec/models/spotlight/
|
690
|
-
./spec/models/spotlight/
|
691
|
-
./spec/models/spotlight/
|
692
|
-
./spec/models/spotlight/
|
693
|
-
./spec/models/spotlight/
|
694
|
-
./spec/models/spotlight/
|
695
|
-
./spec/models/spotlight/
|
696
|
-
./spec/models/spotlight/
|
697
|
-
./spec/models/spotlight/
|
698
|
-
./spec/models/spotlight/
|
699
|
-
./spec/models/spotlight/
|
700
|
-
./spec/models/spotlight/
|
701
|
-
./spec/models/spotlight/
|
702
|
-
./spec/models/spotlight/
|
703
|
-
./spec/models/spotlight/
|
704
|
-
./spec/models/spotlight/
|
705
|
-
./spec/models/spotlight/
|
706
|
-
./spec/models/spotlight/
|
707
|
-
./spec/models/spotlight/
|
708
|
-
./spec/models/spotlight/
|
709
|
-
./spec/models/spotlight/
|
710
|
-
./spec/models/spotlight/
|
711
|
-
./spec/models/spotlight/
|
712
|
-
./spec/models/spotlight/
|
713
|
-
./spec/models/spotlight/
|
714
|
-
./spec/models/spotlight/
|
715
|
-
./spec/models/spotlight/
|
716
|
-
./spec/models/spotlight/
|
717
|
-
./spec/models/spotlight/
|
718
|
-
./spec/models/spotlight/
|
719
|
-
./spec/models/spotlight/
|
720
|
-
./spec/models/spotlight/
|
721
|
-
./spec/models/spotlight/
|
722
|
-
./spec/models/spotlight/
|
723
|
-
./spec/models/spotlight/
|
724
|
-
./spec/models/spotlight/
|
725
|
-
./spec/models/spotlight/
|
726
|
-
./spec/models/spotlight/
|
727
|
-
./spec/models/spotlight/
|
728
|
-
./spec/models/spotlight/
|
729
|
-
./spec/models/spotlight/
|
730
|
-
./spec/models/spotlight/
|
731
|
-
./spec/models/spotlight/
|
732
|
-
./spec/models/spotlight/
|
733
|
-
./spec/models/spotlight/
|
734
|
-
./spec/models/spotlight/
|
735
|
-
./spec/models/spotlight/
|
736
|
-
./spec/models/spotlight/
|
737
|
-
./spec/models/spotlight/
|
738
|
-
./spec/models/spotlight/
|
739
|
-
./spec/models/spotlight/
|
740
|
-
./spec/models/spotlight/
|
741
|
-
./spec/models/spotlight/
|
742
|
-
./spec/models/spotlight/
|
743
|
-
./spec/models/spotlight/
|
744
|
-
./spec/models/spotlight/
|
745
|
-
./spec/models/spotlight/
|
746
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
747
|
-
./spec/models/spotlight/
|
748
|
-
./spec/models/spotlight/
|
749
|
-
./spec/models/spotlight/
|
750
|
-
./spec/models/spotlight/
|
751
|
-
./spec/models/spotlight/
|
752
|
-
./spec/models/spotlight/
|
753
|
-
./spec/models/spotlight/
|
754
|
-
./spec/models/spotlight/
|
755
|
-
./spec/models/spotlight/
|
756
|
-
./spec/models/spotlight/
|
757
|
-
./spec/models/spotlight/
|
758
|
-
./spec/models/spotlight/
|
759
|
-
./spec/models/spotlight/
|
760
|
-
./spec/models/spotlight/
|
761
|
-
./spec/models/spotlight/
|
762
|
-
./spec/models/spotlight/
|
763
|
-
./spec/models/spotlight/
|
764
|
-
./spec/models/spotlight/
|
765
|
-
./spec/models/spotlight/
|
766
|
-
./spec/models/spotlight/
|
767
|
-
./spec/models/spotlight/
|
768
|
-
./spec/models/spotlight/
|
769
|
-
./spec/models/spotlight/
|
770
|
-
./spec/models/spotlight/
|
771
|
-
./spec/models/spotlight/
|
772
|
-
./spec/models/spotlight/
|
773
|
-
./spec/models/spotlight/
|
774
|
-
./spec/models/spotlight/
|
775
|
-
./spec/models/spotlight/
|
776
|
-
./spec/models/spotlight/
|
777
|
-
./spec/models/spotlight/
|
778
|
-
./spec/models/spotlight/
|
779
|
-
./spec/models/spotlight/
|
780
|
-
./spec/models/spotlight/
|
781
|
-
./spec/models/spotlight/
|
782
|
-
./spec/models/spotlight/
|
783
|
-
./spec/models/spotlight/
|
784
|
-
./spec/models/spotlight/
|
785
|
-
./spec/models/spotlight/
|
786
|
-
./spec/models/spotlight/
|
787
|
-
./spec/models/spotlight/
|
788
|
-
./spec/models/spotlight/
|
789
|
-
./spec/models/spotlight/
|
790
|
-
./spec/models/spotlight/
|
791
|
-
./spec/models/spotlight/
|
792
|
-
./spec/models/spotlight/
|
793
|
-
./spec/models/spotlight/
|
794
|
-
./spec/models/spotlight/
|
795
|
-
./spec/models/spotlight/
|
796
|
-
./spec/models/spotlight/
|
797
|
-
./spec/models/spotlight/
|
798
|
-
./spec/models/spotlight/
|
799
|
-
./spec/models/spotlight/
|
800
|
-
./spec/models/spotlight/
|
801
|
-
./spec/models/spotlight/
|
802
|
-
./spec/models/spotlight/
|
803
|
-
./spec/models/spotlight/
|
804
|
-
./spec/models/spotlight/
|
805
|
-
./spec/models/spotlight/
|
806
|
-
./spec/models/spotlight/
|
807
|
-
./spec/models/spotlight/
|
808
|
-
./spec/models/spotlight/
|
809
|
-
./spec/models/spotlight/
|
810
|
-
./spec/models/spotlight/
|
811
|
-
./spec/models/spotlight/
|
812
|
-
./spec/models/spotlight/
|
813
|
-
./spec/models/spotlight/
|
814
|
-
./spec/models/spotlight/
|
815
|
-
./spec/models/spotlight/
|
816
|
-
./spec/models/spotlight/
|
817
|
-
./spec/models/spotlight/
|
818
|
-
./spec/models/spotlight/
|
819
|
-
./spec/models/spotlight/
|
820
|
-
./spec/models/spotlight/
|
821
|
-
./spec/models/spotlight/
|
822
|
-
./spec/models/spotlight/
|
823
|
-
./spec/models/spotlight/
|
824
|
-
./spec/models/spotlight/
|
825
|
-
./spec/models/spotlight/
|
826
|
-
./spec/models/spotlight/
|
827
|
-
./spec/models/spotlight/
|
828
|
-
./spec/models/spotlight/
|
829
|
-
./spec/models/spotlight/
|
830
|
-
./spec/models/spotlight/
|
831
|
-
./spec/models/spotlight/
|
832
|
-
./spec/models/spotlight/
|
833
|
-
./spec/models/spotlight/
|
834
|
-
./spec/models/spotlight/
|
835
|
-
./spec/models/spotlight/
|
836
|
-
./spec/models/spotlight/
|
837
|
-
./spec/models/spotlight/
|
838
|
-
./spec/models/spotlight/
|
839
|
-
./spec/models/spotlight/
|
840
|
-
./spec/models/spotlight/
|
841
|
-
./spec/models/spotlight/
|
842
|
-
./spec/models/spotlight/
|
843
|
-
./spec/models/spotlight/
|
844
|
-
./spec/models/spotlight/
|
845
|
-
./spec/models/spotlight/
|
846
|
-
./spec/models/spotlight/
|
847
|
-
./spec/models/spotlight/
|
848
|
-
./spec/models/spotlight/
|
849
|
-
./spec/models/spotlight/
|
850
|
-
./spec/models/spotlight/
|
851
|
-
./spec/models/spotlight/
|
852
|
-
./spec/models/spotlight/
|
853
|
-
./spec/models/spotlight/
|
854
|
-
./spec/models/spotlight/
|
855
|
-
./spec/models/spotlight/
|
856
|
-
./spec/models/spotlight/
|
857
|
-
./spec/models/spotlight/
|
858
|
-
./spec/models/spotlight/
|
859
|
-
./spec/models/spotlight/
|
860
|
-
./spec/models/spotlight/
|
861
|
-
./spec/models/spotlight/
|
862
|
-
./spec/models/spotlight/
|
863
|
-
./spec/models/spotlight/
|
864
|
-
./spec/models/spotlight/
|
865
|
-
./spec/models/spotlight/
|
866
|
-
./spec/models/spotlight/
|
867
|
-
./spec/models/spotlight/
|
868
|
-
./spec/models/spotlight/
|
869
|
-
./spec/models/spotlight/
|
870
|
-
./spec/models/spotlight/
|
871
|
-
./spec/models/spotlight/
|
872
|
-
./spec/models/spotlight/
|
873
|
-
./spec/models/spotlight/
|
874
|
-
./spec/models/spotlight/
|
875
|
-
./spec/models/spotlight/
|
876
|
-
./spec/models/spotlight/
|
877
|
-
./spec/models/spotlight/
|
878
|
-
./spec/models/spotlight/
|
879
|
-
./spec/models/spotlight/
|
880
|
-
./spec/models/spotlight/
|
881
|
-
./spec/models/spotlight/
|
882
|
-
./spec/models/spotlight/
|
883
|
-
./spec/models/spotlight/
|
884
|
-
./spec/models/spotlight/
|
885
|
-
./spec/models/spotlight/
|
886
|
-
./spec/models/spotlight/
|
887
|
-
./spec/models/spotlight/
|
888
|
-
./spec/models/spotlight/
|
889
|
-
./spec/models/spotlight/
|
890
|
-
./spec/models/spotlight/
|
891
|
-
./spec/models/spotlight/
|
892
|
-
./spec/models/spotlight/
|
893
|
-
./spec/models/spotlight/
|
894
|
-
./spec/models/spotlight/
|
895
|
-
./spec/models/spotlight/
|
896
|
-
./spec/models/spotlight/
|
897
|
-
./spec/models/spotlight/
|
898
|
-
./spec/models/spotlight/
|
899
|
-
./spec/models/spotlight/
|
900
|
-
./spec/models/spotlight/
|
901
|
-
./spec/models/spotlight/
|
902
|
-
./spec/models/spotlight/
|
903
|
-
./spec/models/spotlight/
|
904
|
-
./spec/models/spotlight/
|
905
|
-
./spec/models/spotlight/
|
906
|
-
./spec/models/spotlight/
|
907
|
-
./spec/models/spotlight/
|
908
|
-
./spec/models/spotlight/
|
909
|
-
./spec/models/spotlight/
|
910
|
-
./spec/models/spotlight/
|
911
|
-
./spec/models/spotlight/
|
912
|
-
./spec/models/spotlight/
|
913
|
-
./spec/models/spotlight/
|
914
|
-
./spec/models/spotlight/
|
915
|
-
./spec/models/spotlight/
|
916
|
-
./spec/models/spotlight/
|
917
|
-
./spec/models/spotlight/
|
918
|
-
./spec/
|
919
|
-
./spec/
|
920
|
-
./spec/
|
921
|
-
./spec/
|
922
|
-
./spec/
|
923
|
-
./spec/
|
924
|
-
./spec/
|
925
|
-
./spec/
|
926
|
-
./spec/
|
927
|
-
./spec/
|
928
|
-
./spec/
|
929
|
-
./spec/
|
930
|
-
./spec/
|
931
|
-
./spec/
|
932
|
-
./spec/
|
933
|
-
./spec/
|
934
|
-
./spec/
|
935
|
-
./spec/
|
936
|
-
./spec/
|
937
|
-
./spec/
|
938
|
-
./spec/
|
939
|
-
./spec/
|
940
|
-
./spec/
|
941
|
-
./spec/
|
942
|
-
./spec/
|
943
|
-
./spec/
|
944
|
-
./spec/
|
945
|
-
./spec/
|
946
|
-
./spec/
|
947
|
-
./spec/
|
948
|
-
./spec/
|
949
|
-
./spec/
|
950
|
-
./spec/
|
951
|
-
./spec/
|
952
|
-
./spec/
|
953
|
-
./spec/
|
954
|
-
./spec/
|
955
|
-
./spec/
|
956
|
-
./spec/
|
957
|
-
./spec/
|
958
|
-
./spec/
|
959
|
-
./spec/
|
960
|
-
./spec/
|
961
|
-
./spec/
|
962
|
-
./spec/
|
963
|
-
./spec/
|
964
|
-
./spec/
|
965
|
-
./spec/
|
966
|
-
./spec/
|
967
|
-
./spec/
|
968
|
-
./spec/
|
969
|
-
./spec/
|
970
|
-
./spec/
|
971
|
-
./spec/
|
972
|
-
./spec/
|
973
|
-
./spec/
|
974
|
-
./spec/
|
975
|
-
./spec/
|
976
|
-
./spec/
|
977
|
-
./spec/
|
978
|
-
./spec/
|
979
|
-
./spec/
|
980
|
-
./spec/
|
981
|
-
./spec/
|
982
|
-
./spec/
|
983
|
-
./spec/
|
984
|
-
./spec/
|
985
|
-
./spec/
|
986
|
-
./spec/
|
987
|
-
./spec/
|
988
|
-
./spec/
|
989
|
-
./spec/
|
990
|
-
./spec/
|
991
|
-
./spec/
|
992
|
-
./spec/
|
993
|
-
./spec/
|
994
|
-
./spec/
|
995
|
-
./spec/
|
996
|
-
./spec/
|
997
|
-
./spec/
|
998
|
-
./spec/
|
999
|
-
./spec/
|
1000
|
-
./spec/
|
1001
|
-
./spec/
|
1002
|
-
./spec/
|
1003
|
-
./spec/
|
1004
|
-
./spec/
|
1005
|
-
./spec/
|
1006
|
-
./spec/
|
1007
|
-
./spec/
|
1008
|
-
./spec/
|
1009
|
-
./spec/
|
1010
|
-
./spec/
|
1011
|
-
./spec/
|
1012
|
-
./spec/
|
1013
|
-
./spec/
|
1014
|
-
./spec/
|
1015
|
-
./spec/
|
1016
|
-
./spec/
|
1017
|
-
./spec/
|
1018
|
-
./spec/
|
1019
|
-
./spec/
|
1020
|
-
./spec/
|
1021
|
-
./spec/
|
1022
|
-
./spec/
|
1023
|
-
./spec/
|
1024
|
-
./spec/
|
1025
|
-
./spec/
|
1026
|
-
./spec/
|
1027
|
-
./spec/
|
1028
|
-
./spec/
|
1029
|
-
./spec/
|
1030
|
-
./spec/
|
1031
|
-
./spec/
|
1032
|
-
./spec/
|
1033
|
-
./spec/
|
1034
|
-
./spec/
|
1035
|
-
./spec/
|
1036
|
-
./spec/
|
1037
|
-
./spec/
|
1038
|
-
./spec/
|
1039
|
-
./spec/
|
1040
|
-
./spec/
|
1041
|
-
./spec/
|
1042
|
-
./spec/
|
1043
|
-
./spec/
|
1044
|
-
./spec/
|
1045
|
-
./spec/
|
1046
|
-
./spec/
|
1047
|
-
./spec/
|
1048
|
-
./spec/
|
1049
|
-
./spec/
|
1050
|
-
./spec/
|
1051
|
-
./spec/
|
1052
|
-
./spec/
|
1053
|
-
./spec/
|
1054
|
-
./spec/
|
1055
|
-
./spec/
|
1056
|
-
./spec/views/
|
1057
|
-
./spec/views/
|
1058
|
-
./spec/views/
|
1059
|
-
./spec/views/
|
1060
|
-
./spec/views/
|
1061
|
-
./spec/views/
|
1062
|
-
./spec/views/
|
1063
|
-
./spec/views/
|
1064
|
-
./spec/views/
|
1065
|
-
./spec/views/
|
1066
|
-
./spec/views/
|
1067
|
-
./spec/views/
|
1068
|
-
./spec/views/
|
1069
|
-
./spec/views/
|
1070
|
-
./spec/views/
|
1071
|
-
./spec/views/
|
1072
|
-
./spec/views/
|
1073
|
-
./spec/views/
|
1074
|
-
./spec/views/
|
1075
|
-
./spec/views/
|
1076
|
-
./spec/views/
|
1077
|
-
./spec/views/
|
1078
|
-
./spec/views/
|
1079
|
-
./spec/views/
|
1080
|
-
./spec/views/
|
1081
|
-
./spec/views/
|
1082
|
-
./spec/views/
|
1083
|
-
./spec/views/
|
1084
|
-
./spec/views/
|
1085
|
-
./spec/views/
|
1086
|
-
./spec/views/
|
1087
|
-
./spec/views/
|
1088
|
-
./spec/views/
|
1089
|
-
./spec/views/
|
1090
|
-
./spec/views/
|
1091
|
-
./spec/views/spotlight/
|
1092
|
-
./spec/views/spotlight/
|
1093
|
-
./spec/views/spotlight/
|
1094
|
-
./spec/views/spotlight/
|
1095
|
-
./spec/views/spotlight/
|
1096
|
-
./spec/views/spotlight/
|
1097
|
-
./spec/views/spotlight/
|
1098
|
-
./spec/views/spotlight/
|
1099
|
-
./spec/views/spotlight/
|
1100
|
-
./spec/views/spotlight/
|
1101
|
-
./spec/views/spotlight/
|
1102
|
-
./spec/views/spotlight/
|
1103
|
-
./spec/views/spotlight/
|
1104
|
-
./spec/views/spotlight/
|
1105
|
-
./spec/views/spotlight/
|
1106
|
-
./spec/views/spotlight/
|
1107
|
-
./spec/views/spotlight/
|
1108
|
-
./spec/views/spotlight/
|
1109
|
-
./spec/views/spotlight/
|
1110
|
-
./spec/views/spotlight/
|
1111
|
-
./spec/views/spotlight/
|
1112
|
-
./spec/views/spotlight/
|
1113
|
-
./spec/views/spotlight/
|
1114
|
-
./spec/views/spotlight/
|
1115
|
-
./spec/views/spotlight/
|
1116
|
-
./spec/views/spotlight/
|
1117
|
-
./spec/views/spotlight/
|
1118
|
-
./spec/views/spotlight/
|
1119
|
-
./spec/views/spotlight/
|
1120
|
-
./spec/views/spotlight/
|
1121
|
-
./spec/views/spotlight/
|
1122
|
-
./spec/views/spotlight/
|
1123
|
-
./spec/views/spotlight/
|
1124
|
-
./spec/views/spotlight/
|
1125
|
-
./spec/views/spotlight/
|
1126
|
-
./spec/views/spotlight/
|
1127
|
-
./spec/views/spotlight/
|
1128
|
-
./spec/views/spotlight/
|
1129
|
-
./spec/views/spotlight/
|
1130
|
-
./spec/views/spotlight/
|
1131
|
-
./spec/views/spotlight/
|
1132
|
-
./spec/views/spotlight/
|
1133
|
-
./spec/views/spotlight/
|
1134
|
-
./spec/views/spotlight/
|
1135
|
-
./spec/views/spotlight/
|
1136
|
-
./spec/views/spotlight/
|
1137
|
-
./spec/views/spotlight/
|
1138
|
-
./spec/views/spotlight/
|
1139
|
-
./spec/views/spotlight/
|
1140
|
-
./spec/views/spotlight/
|
1141
|
-
./spec/views/spotlight/
|
1142
|
-
./spec/views/spotlight/
|
1143
|
-
./spec/views/spotlight/
|
1144
|
-
./spec/views/spotlight/
|
1145
|
-
./spec/views/spotlight/
|
1146
|
-
./spec/views/spotlight/
|
1147
|
-
./spec/views/spotlight/
|
1148
|
-
./spec/views/spotlight/
|
1149
|
-
./spec/views/spotlight/
|
1150
|
-
./spec/views/spotlight/
|
1151
|
-
./spec/views/spotlight/
|
1152
|
-
./spec/views/spotlight/
|
1153
|
-
./spec/views/spotlight/
|
1154
|
-
./spec/views/spotlight/
|
1155
|
-
./spec/views/spotlight/
|
1156
|
-
./spec/views/spotlight/
|
1157
|
-
./spec/views/spotlight/
|
1158
|
-
./spec/views/spotlight/
|
1159
|
-
./spec/views/spotlight/
|
1160
|
-
./spec/views/spotlight/
|
1161
|
-
./spec/views/spotlight/
|
1162
|
-
./spec/views/spotlight/
|
1163
|
-
./spec/views/spotlight/
|
1164
|
-
./spec/views/spotlight/
|
1165
|
-
./spec/views/spotlight/
|
1166
|
-
./spec/views/spotlight/
|
1167
|
-
./spec/views/spotlight/
|
1168
|
-
./spec/views/spotlight/
|
1169
|
-
./spec/views/spotlight/
|
1170
|
-
./spec/views/spotlight/
|
409
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 2.72 seconds |
|
410
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 3.64 seconds |
|
411
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 4.63 seconds |
|
412
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 2.56 seconds |
|
413
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 2.39 seconds |
|
414
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.75 seconds |
|
415
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 2.02 seconds |
|
416
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.28 seconds |
|
417
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.63733 seconds |
|
418
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.84844 seconds |
|
419
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 2.29 seconds |
|
420
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.25 seconds |
|
421
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.6099 seconds |
|
422
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 1.22 seconds |
|
423
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.65409 seconds |
|
424
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.67422 seconds |
|
425
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 3.28 seconds |
|
426
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.71776 seconds |
|
427
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.67229 seconds |
|
428
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 5.11 seconds |
|
429
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 4.63 seconds |
|
430
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 3.5 seconds |
|
431
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 2.16 seconds |
|
432
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 2.86 seconds |
|
433
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 5.84 seconds |
|
434
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 3.14 seconds |
|
435
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 2.42 seconds |
|
436
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 3.07 seconds |
|
437
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 2.93 seconds |
|
438
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 6.6 seconds |
|
439
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.92808 seconds |
|
440
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 3.12 seconds |
|
441
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.25666 seconds |
|
442
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.22619 seconds |
|
443
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.18795 seconds |
|
444
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.38862 seconds |
|
445
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.32602 seconds |
|
446
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.25687 seconds |
|
447
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 5.8 seconds |
|
448
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.88829 seconds |
|
449
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.3729 seconds |
|
450
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 1.53 seconds |
|
451
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 5.43 seconds |
|
452
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 1.32 seconds |
|
453
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.58606 seconds |
|
454
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 1.01 seconds |
|
455
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.90084 seconds |
|
456
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 2.37 seconds |
|
457
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.8538 seconds |
|
458
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.82266 seconds |
|
459
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.13092 seconds |
|
460
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.95696 seconds |
|
461
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.09699 seconds |
|
462
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.09656 seconds |
|
463
|
+
./spec/features/slideshow_spec.rb[1:1] | pending | 11.57 seconds |
|
464
|
+
./spec/features/tags_admin_spec.rb[1:1:1] | failed | 0.12381 seconds |
|
465
|
+
./spec/features/tags_admin_spec.rb[1:1:2] | failed | 0.11532 seconds |
|
466
|
+
./spec/features/tags_admin_spec.rb[1:2:1] | failed | 0.12136 seconds |
|
467
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 2.33 seconds |
|
468
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.06745 seconds |
|
469
|
+
./spec/features/user_admin_spec.rb[1:1:1] | passed | 1.15 seconds |
|
470
|
+
./spec/features/user_admin_spec.rb[1:1:2] | passed | 3.04 seconds |
|
471
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01164 seconds |
|
472
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.01107 seconds |
|
473
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.03008 seconds |
|
474
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.01589 seconds |
|
475
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01307 seconds |
|
476
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.11838 seconds |
|
477
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01381 seconds |
|
478
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.01777 seconds |
|
479
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.09345 seconds |
|
480
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.09892 seconds |
|
481
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.01109 seconds |
|
482
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01308 seconds |
|
483
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01991 seconds |
|
484
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01139 seconds |
|
485
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.02079 seconds |
|
486
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.01338 seconds |
|
487
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.02212 seconds |
|
488
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.01923 seconds |
|
489
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.01167 seconds |
|
490
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01264 seconds |
|
491
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.17398 seconds |
|
492
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.1963 seconds |
|
493
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.15647 seconds |
|
494
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.18824 seconds |
|
495
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.16366 seconds |
|
496
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.16572 seconds |
|
497
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.20263 seconds |
|
498
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.17897 seconds |
|
499
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.19756 seconds |
|
500
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.18129 seconds |
|
501
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.17154 seconds |
|
502
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.17415 seconds |
|
503
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.01131 seconds |
|
504
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.16177 seconds |
|
505
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01252 seconds |
|
506
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.15892 seconds |
|
507
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.01141 seconds |
|
508
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.09538 seconds |
|
509
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.20404 seconds |
|
510
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.19576 seconds |
|
511
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.19088 seconds |
|
512
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.00868 seconds |
|
513
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.00922 seconds |
|
514
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.01059 seconds |
|
515
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.75908 seconds |
|
516
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.09968 seconds |
|
517
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.10019 seconds |
|
518
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01079 seconds |
|
519
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.0997 seconds |
|
520
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.01099 seconds |
|
521
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.11008 seconds |
|
522
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.17659 seconds |
|
523
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.0947 seconds |
|
524
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.11608 seconds |
|
525
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.01416 seconds |
|
526
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.0188 seconds |
|
527
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.01366 seconds |
|
528
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.15551 seconds |
|
529
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.11274 seconds |
|
530
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.09429 seconds |
|
531
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.10168 seconds |
|
532
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.09996 seconds |
|
533
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.12102 seconds |
|
534
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.1675 seconds |
|
535
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.11128 seconds |
|
536
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.11836 seconds |
|
537
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.10699 seconds |
|
538
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.10485 seconds |
|
539
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.11453 seconds |
|
540
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.103 seconds |
|
541
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.12137 seconds |
|
542
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.02786 seconds |
|
543
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.43845 seconds |
|
544
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.2234 seconds |
|
545
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.02126 seconds |
|
546
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.01841 seconds |
|
547
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.0252 seconds |
|
548
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01775 seconds |
|
549
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01656 seconds |
|
550
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.02481 seconds |
|
551
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.02021 seconds |
|
552
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.18063 seconds |
|
553
|
+
./spec/i18n_spec.rb[1:1] | pending | 1.81 seconds |
|
554
|
+
./spec/i18n_spec.rb[1:2] | passed | 2.3 seconds |
|
555
|
+
./spec/i18n_spec.rb[1:3] | passed | 0.86332 seconds |
|
556
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.10471 seconds |
|
557
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.22332 seconds |
|
558
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.02489 seconds |
|
559
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.15566 seconds |
|
560
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.14532 seconds |
|
561
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.14493 seconds |
|
562
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.15817 seconds |
|
563
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.17818 seconds |
|
564
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.18369 seconds |
|
565
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.08191 seconds |
|
566
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.14744 seconds |
|
567
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.1649 seconds |
|
568
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.17249 seconds |
|
569
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.16434 seconds |
|
570
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.16912 seconds |
|
571
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.17147 seconds |
|
572
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.16669 seconds |
|
573
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.15727 seconds |
|
574
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.02225 seconds |
|
575
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.01216 seconds |
|
576
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.01167 seconds |
|
577
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.01744 seconds |
|
578
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.01287 seconds |
|
579
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.03262 seconds |
|
580
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.01058 seconds |
|
581
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.17652 seconds |
|
582
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.00977 seconds |
|
583
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01121 seconds |
|
584
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.01318 seconds |
|
585
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.21608 seconds |
|
586
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.01311 seconds |
|
587
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.01057 seconds |
|
588
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.01127 seconds |
|
589
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.01231 seconds |
|
590
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.01451 seconds |
|
591
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.01203 seconds |
|
592
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.39771 seconds |
|
593
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.01438 seconds |
|
594
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.01327 seconds |
|
595
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.1042 seconds |
|
596
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.12604 seconds |
|
597
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.10937 seconds |
|
598
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.16568 seconds |
|
599
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.15038 seconds |
|
600
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.15105 seconds |
|
601
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.16958 seconds |
|
602
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.08973 seconds |
|
603
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.08454 seconds |
|
604
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.08126 seconds |
|
605
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.09268 seconds |
|
606
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00891 seconds |
|
607
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00964 seconds |
|
608
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.01225 seconds |
|
609
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00954 seconds |
|
610
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.01359 seconds |
|
611
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.01369 seconds |
|
612
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.0097 seconds |
|
613
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.19034 seconds |
|
614
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.1736 seconds |
|
615
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.18742 seconds |
|
616
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.01311 seconds |
|
617
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.01794 seconds |
|
618
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.0139 seconds |
|
619
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.01715 seconds |
|
620
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.26943 seconds |
|
621
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.34078 seconds |
|
622
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.17187 seconds |
|
623
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.20045 seconds |
|
624
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.44471 seconds |
|
625
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.29715 seconds |
|
626
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.31022 seconds |
|
627
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.44522 seconds |
|
628
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.2041 seconds |
|
629
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.18194 seconds |
|
630
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.23843 seconds |
|
631
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.21764 seconds |
|
632
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.1904 seconds |
|
633
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.01226 seconds |
|
634
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.01274 seconds |
|
635
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.01305 seconds |
|
636
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.01292 seconds |
|
637
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.00992 seconds |
|
638
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.01133 seconds |
|
639
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01321 seconds |
|
640
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.21418 seconds |
|
641
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.21113 seconds |
|
642
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.22788 seconds |
|
643
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.19461 seconds |
|
644
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.61054 seconds |
|
645
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.26348 seconds |
|
646
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.1584 seconds |
|
647
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.39627 seconds |
|
648
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.16632 seconds |
|
649
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.02278 seconds |
|
650
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.1589 seconds |
|
651
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.16 seconds |
|
652
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.1848 seconds |
|
653
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.18961 seconds |
|
654
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.15558 seconds |
|
655
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.1564 seconds |
|
656
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.15484 seconds |
|
657
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.16258 seconds |
|
658
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.16134 seconds |
|
659
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.15776 seconds |
|
660
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.21113 seconds |
|
661
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.16368 seconds |
|
662
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.16068 seconds |
|
663
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.20001 seconds |
|
664
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.16439 seconds |
|
665
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.30768 seconds |
|
666
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.26284 seconds |
|
667
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.16553 seconds |
|
668
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.17993 seconds |
|
669
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.19814 seconds |
|
670
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.17263 seconds |
|
671
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.1579 seconds |
|
672
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.16389 seconds |
|
673
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.25238 seconds |
|
674
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.27253 seconds |
|
675
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.15809 seconds |
|
676
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.16825 seconds |
|
677
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.19109 seconds |
|
678
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.16047 seconds |
|
679
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.19069 seconds |
|
680
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.19847 seconds |
|
681
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.18995 seconds |
|
682
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.01054 seconds |
|
683
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01156 seconds |
|
684
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.07246 seconds |
|
685
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.10478 seconds |
|
686
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.13736 seconds |
|
687
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.1477 seconds |
|
688
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.14896 seconds |
|
689
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.17447 seconds |
|
690
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.14777 seconds |
|
691
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.0103 seconds |
|
692
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.09504 seconds |
|
693
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.10018 seconds |
|
694
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.10068 seconds |
|
695
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.0953 seconds |
|
696
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.09308 seconds |
|
697
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.09456 seconds |
|
698
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.09872 seconds |
|
699
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.1017 seconds |
|
700
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.09604 seconds |
|
701
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.09749 seconds |
|
702
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.09722 seconds |
|
703
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.10124 seconds |
|
704
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.09903 seconds |
|
705
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.09979 seconds |
|
706
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.09658 seconds |
|
707
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.10189 seconds |
|
708
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.09661 seconds |
|
709
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.1025 seconds |
|
710
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.09828 seconds |
|
711
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.10005 seconds |
|
712
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.09986 seconds |
|
713
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.12106 seconds |
|
714
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.0992 seconds |
|
715
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.10358 seconds |
|
716
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.09902 seconds |
|
717
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.10147 seconds |
|
718
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.0985 seconds |
|
719
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.09887 seconds |
|
720
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.09593 seconds |
|
721
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.10267 seconds |
|
722
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.10988 seconds |
|
723
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.10291 seconds |
|
724
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.1224 seconds |
|
725
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.10395 seconds |
|
726
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.10643 seconds |
|
727
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.13871 seconds |
|
728
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.09592 seconds |
|
729
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.09746 seconds |
|
730
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.10331 seconds |
|
731
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.10115 seconds |
|
732
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.1 seconds |
|
733
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.12628 seconds |
|
734
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.1041 seconds |
|
735
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.09586 seconds |
|
736
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.09569 seconds |
|
737
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.09625 seconds |
|
738
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.09522 seconds |
|
739
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.09715 seconds |
|
740
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.09926 seconds |
|
741
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.09649 seconds |
|
742
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.11391 seconds |
|
743
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.10281 seconds |
|
744
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.0945 seconds |
|
745
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.10063 seconds |
|
746
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.10205 seconds |
|
747
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.09291 seconds |
|
748
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.09356 seconds |
|
749
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.1033 seconds |
|
750
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.10419 seconds |
|
751
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.1039 seconds |
|
752
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.09758 seconds |
|
753
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.09788 seconds |
|
754
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.09671 seconds |
|
755
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.09748 seconds |
|
756
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.09508 seconds |
|
757
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.09634 seconds |
|
758
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.09721 seconds |
|
759
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.12235 seconds |
|
760
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.09824 seconds |
|
761
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.11262 seconds |
|
762
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.12113 seconds |
|
763
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.10702 seconds |
|
764
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.11949 seconds |
|
765
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.1255 seconds |
|
766
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.14025 seconds |
|
767
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.14715 seconds |
|
768
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.14636 seconds |
|
769
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.17755 seconds |
|
770
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.14529 seconds |
|
771
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.74877 seconds |
|
772
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.15075 seconds |
|
773
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.72498 seconds |
|
774
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.0096 seconds |
|
775
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.11209 seconds |
|
776
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.09939 seconds |
|
777
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.09365 seconds |
|
778
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.13942 seconds |
|
779
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.01324 seconds |
|
780
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.0722 seconds |
|
781
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.07916 seconds |
|
782
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.01029 seconds |
|
783
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.08688 seconds |
|
784
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.01127 seconds |
|
785
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.0194 seconds |
|
786
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.014 seconds |
|
787
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01747 seconds |
|
788
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.07108 seconds |
|
789
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.07529 seconds |
|
790
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.07943 seconds |
|
791
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.09061 seconds |
|
792
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.07792 seconds |
|
793
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.07876 seconds |
|
794
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.07798 seconds |
|
795
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.09555 seconds |
|
796
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.09881 seconds |
|
797
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.08107 seconds |
|
798
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.02109 seconds |
|
799
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.1279 seconds |
|
800
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.28978 seconds |
|
801
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.68733 seconds |
|
802
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:2] | passed | 0.21941 seconds |
|
803
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.02413 seconds |
|
804
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6] | passed | 0.02048 seconds |
|
805
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.07322 seconds |
|
806
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.09219 seconds |
|
807
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.17974 seconds |
|
808
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.08704 seconds |
|
809
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.02915 seconds |
|
810
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.07319 seconds |
|
811
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:2] | passed | 0.06971 seconds |
|
812
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.2353 seconds |
|
813
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.20195 seconds |
|
814
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.2022 seconds |
|
815
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:3:1] | passed | 0.25843 seconds |
|
816
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.17406 seconds |
|
817
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.16468 seconds |
|
818
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.19426 seconds |
|
819
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.17094 seconds |
|
820
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.0755 seconds |
|
821
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.06933 seconds |
|
822
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.02552 seconds |
|
823
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2] | passed | 0.02603 seconds |
|
824
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:3:1] | passed | 0.02717 seconds |
|
825
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:4:1] | passed | 0.02401 seconds |
|
826
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1:1] | passed | 0.10516 seconds |
|
827
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:2:1] | passed | 0.04264 seconds |
|
828
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.13167 seconds |
|
829
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20] | passed | 0.02712 seconds |
|
830
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.53332 seconds |
|
831
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:2] | passed | 0.53344 seconds |
|
832
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:3] | passed | 0.62107 seconds |
|
833
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.01014 seconds |
|
834
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.11599 seconds |
|
835
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.11964 seconds |
|
836
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.11702 seconds |
|
837
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.13394 seconds |
|
838
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.00869 seconds |
|
839
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.09353 seconds |
|
840
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.29667 seconds |
|
841
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.12062 seconds |
|
842
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.01172 seconds |
|
843
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.00904 seconds |
|
844
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.1088 seconds |
|
845
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.11316 seconds |
|
846
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.10955 seconds |
|
847
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.01139 seconds |
|
848
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.01261 seconds |
|
849
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.01597 seconds |
|
850
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.01557 seconds |
|
851
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.02506 seconds |
|
852
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.02954 seconds |
|
853
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.0152 seconds |
|
854
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01712 seconds |
|
855
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.01634 seconds |
|
856
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.09848 seconds |
|
857
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.10621 seconds |
|
858
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.10644 seconds |
|
859
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.10569 seconds |
|
860
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.0132 seconds |
|
861
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.02819 seconds |
|
862
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.00996 seconds |
|
863
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.00887 seconds |
|
864
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.0801 seconds |
|
865
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.08207 seconds |
|
866
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.07782 seconds |
|
867
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.07849 seconds |
|
868
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.07816 seconds |
|
869
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.01358 seconds |
|
870
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.01181 seconds |
|
871
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.60056 seconds |
|
872
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.63047 seconds |
|
873
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.08136 seconds |
|
874
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.11795 seconds |
|
875
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.00981 seconds |
|
876
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01187 seconds |
|
877
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.01024 seconds |
|
878
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.01637 seconds |
|
879
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.01144 seconds |
|
880
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.15188 seconds |
|
881
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.1289 seconds |
|
882
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.12796 seconds |
|
883
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.13269 seconds |
|
884
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.15437 seconds |
|
885
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.1289 seconds |
|
886
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.17656 seconds |
|
887
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.27434 seconds |
|
888
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.23879 seconds |
|
889
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.25734 seconds |
|
890
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.2436 seconds |
|
891
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.2486 seconds |
|
892
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.24017 seconds |
|
893
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.28852 seconds |
|
894
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.23596 seconds |
|
895
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.16662 seconds |
|
896
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.14805 seconds |
|
897
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.37473 seconds |
|
898
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.14675 seconds |
|
899
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.14855 seconds |
|
900
|
+
./spec/models/spotlight/page_spec.rb[1:14:2] | passed | 0.14184 seconds |
|
901
|
+
./spec/models/spotlight/page_spec.rb[1:14:3] | passed | 0.14382 seconds |
|
902
|
+
./spec/models/spotlight/page_spec.rb[1:14:4] | passed | 0.14347 seconds |
|
903
|
+
./spec/models/spotlight/page_spec.rb[1:14:5:1] | passed | 0.16648 seconds |
|
904
|
+
./spec/models/spotlight/page_spec.rb[1:14:6:1] | passed | 0.15524 seconds |
|
905
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.14286 seconds |
|
906
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.15455 seconds |
|
907
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.16056 seconds |
|
908
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.13243 seconds |
|
909
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.16571 seconds |
|
910
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.13007 seconds |
|
911
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.14147 seconds |
|
912
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.13319 seconds |
|
913
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.132 seconds |
|
914
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.13172 seconds |
|
915
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.13623 seconds |
|
916
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.13094 seconds |
|
917
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.13922 seconds |
|
918
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.13308 seconds |
|
919
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.00909 seconds |
|
920
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 2.96 seconds |
|
921
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 2.91 seconds |
|
922
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.13635 seconds |
|
923
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.1375 seconds |
|
924
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.14341 seconds |
|
925
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.13258 seconds |
|
926
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.16342 seconds |
|
927
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.13661 seconds |
|
928
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.14314 seconds |
|
929
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.14328 seconds |
|
930
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.24164 seconds |
|
931
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.1839 seconds |
|
932
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.19082 seconds |
|
933
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.23669 seconds |
|
934
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.20916 seconds |
|
935
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.209 seconds |
|
936
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.21896 seconds |
|
937
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.01146 seconds |
|
938
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01326 seconds |
|
939
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.01283 seconds |
|
940
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.01016 seconds |
|
941
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.1375 seconds |
|
942
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.26553 seconds |
|
943
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.11407 seconds |
|
944
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.13707 seconds |
|
945
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.16378 seconds |
|
946
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.1104 seconds |
|
947
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.11309 seconds |
|
948
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.13267 seconds |
|
949
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.11452 seconds |
|
950
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.14482 seconds |
|
951
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.14004 seconds |
|
952
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.1404 seconds |
|
953
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.13466 seconds |
|
954
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.12837 seconds |
|
955
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.17586 seconds |
|
956
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.13318 seconds |
|
957
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.13744 seconds |
|
958
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.13156 seconds |
|
959
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.13738 seconds |
|
960
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.1122 seconds |
|
961
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.16248 seconds |
|
962
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01713 seconds |
|
963
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02513 seconds |
|
964
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.03136 seconds |
|
965
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.03267 seconds |
|
966
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.03554 seconds |
|
967
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.01076 seconds |
|
968
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.01514 seconds |
|
969
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.01138 seconds |
|
970
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.01842 seconds |
|
971
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 0.20319 seconds |
|
972
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.20754 seconds |
|
973
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.43714 seconds |
|
974
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.19716 seconds |
|
975
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.19732 seconds |
|
976
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.18336 seconds |
|
977
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.19135 seconds |
|
978
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 0.25598 seconds |
|
979
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.19951 seconds |
|
980
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.21614 seconds |
|
981
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.00874 seconds |
|
982
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.0093 seconds |
|
983
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.24125 seconds |
|
984
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.31494 seconds |
|
985
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01352 seconds |
|
986
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.01964 seconds |
|
987
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.17679 seconds |
|
988
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.81168 seconds |
|
989
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.30173 seconds |
|
990
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.36547 seconds |
|
991
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.2791 seconds |
|
992
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.1654 seconds |
|
993
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.18161 seconds |
|
994
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.26323 seconds |
|
995
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.18079 seconds |
|
996
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.1614 seconds |
|
997
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.0169 seconds |
|
998
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.24421 seconds |
|
999
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.07579 seconds |
|
1000
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.08156 seconds |
|
1001
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.08023 seconds |
|
1002
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.08045 seconds |
|
1003
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.10187 seconds |
|
1004
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.10572 seconds |
|
1005
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.08584 seconds |
|
1006
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.11783 seconds |
|
1007
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.01025 seconds |
|
1008
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.01048 seconds |
|
1009
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.01077 seconds |
|
1010
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00906 seconds |
|
1011
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00938 seconds |
|
1012
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.00998 seconds |
|
1013
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.10341 seconds |
|
1014
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.07875 seconds |
|
1015
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.08151 seconds |
|
1016
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.01055 seconds |
|
1017
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.01774 seconds |
|
1018
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.01091 seconds |
|
1019
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.35156 seconds |
|
1020
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.09863 seconds |
|
1021
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.09368 seconds |
|
1022
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.09062 seconds |
|
1023
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.09465 seconds |
|
1024
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.08944 seconds |
|
1025
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.08841 seconds |
|
1026
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.12122 seconds |
|
1027
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.09086 seconds |
|
1028
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.09946 seconds |
|
1029
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.0836 seconds |
|
1030
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.01 seconds |
|
1031
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00961 seconds |
|
1032
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.0123 seconds |
|
1033
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00876 seconds |
|
1034
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00979 seconds |
|
1035
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.00928 seconds |
|
1036
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.01026 seconds |
|
1037
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.01283 seconds |
|
1038
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.01301 seconds |
|
1039
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.01095 seconds |
|
1040
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.01624 seconds |
|
1041
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.01541 seconds |
|
1042
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.01367 seconds |
|
1043
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.15022 seconds |
|
1044
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.12472 seconds |
|
1045
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.13213 seconds |
|
1046
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.12668 seconds |
|
1047
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.1141 seconds |
|
1048
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.1214 seconds |
|
1049
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.12437 seconds |
|
1050
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.11634 seconds |
|
1051
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.13546 seconds |
|
1052
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.11854 seconds |
|
1053
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.11749 seconds |
|
1054
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.24058 seconds |
|
1055
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.24543 seconds |
|
1056
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.23607 seconds |
|
1057
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.38333 seconds |
|
1058
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.24735 seconds |
|
1059
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.22041 seconds |
|
1060
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.22665 seconds |
|
1061
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.27305 seconds |
|
1062
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.23857 seconds |
|
1063
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.24609 seconds |
|
1064
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.21704 seconds |
|
1065
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.28976 seconds |
|
1066
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.26987 seconds |
|
1067
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.29248 seconds |
|
1068
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.2923 seconds |
|
1069
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.27891 seconds |
|
1070
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.44243 seconds |
|
1071
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.23278 seconds |
|
1072
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.28308 seconds |
|
1073
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.32385 seconds |
|
1074
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.32121 seconds |
|
1075
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.30896 seconds |
|
1076
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.27743 seconds |
|
1077
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.24641 seconds |
|
1078
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.28405 seconds |
|
1079
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.21988 seconds |
|
1080
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.2406 seconds |
|
1081
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.2892 seconds |
|
1082
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.41639 seconds |
|
1083
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.02772 seconds |
|
1084
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.19166 seconds |
|
1085
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.19331 seconds |
|
1086
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.03673 seconds |
|
1087
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.01746 seconds |
|
1088
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.01817 seconds |
|
1089
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.02023 seconds |
|
1090
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.02348 seconds |
|
1091
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.03167 seconds |
|
1092
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.35524 seconds |
|
1093
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.3375 seconds |
|
1094
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.37893 seconds |
|
1095
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.10618 seconds |
|
1096
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.2539 seconds |
|
1097
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.25405 seconds |
|
1098
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.24469 seconds |
|
1099
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.01022 seconds |
|
1100
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.01002 seconds |
|
1101
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.01102 seconds |
|
1102
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.01133 seconds |
|
1103
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.02002 seconds |
|
1104
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.02251 seconds |
|
1105
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.02409 seconds |
|
1106
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.01821 seconds |
|
1107
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.02307 seconds |
|
1108
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.09666 seconds |
|
1109
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.11731 seconds |
|
1110
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.08951 seconds |
|
1111
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.11635 seconds |
|
1112
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.09458 seconds |
|
1113
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.32258 seconds |
|
1114
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.01455 seconds |
|
1115
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.09832 seconds |
|
1116
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.20667 seconds |
|
1117
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.18001 seconds |
|
1118
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.21526 seconds |
|
1119
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.2004 seconds |
|
1120
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.31519 seconds |
|
1121
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.19103 seconds |
|
1122
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.31528 seconds |
|
1123
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.38381 seconds |
|
1124
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.2965 seconds |
|
1125
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.18564 seconds |
|
1126
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.34671 seconds |
|
1127
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.18543 seconds |
|
1128
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.18865 seconds |
|
1129
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.23736 seconds |
|
1130
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.22739 seconds |
|
1131
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.18825 seconds |
|
1132
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.1993 seconds |
|
1133
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.17175 seconds |
|
1134
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.11543 seconds |
|
1135
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.10819 seconds |
|
1136
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.16614 seconds |
|
1137
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.19059 seconds |
|
1138
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.24512 seconds |
|
1139
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.18329 seconds |
|
1140
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.195 seconds |
|
1141
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.17792 seconds |
|
1142
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.20544 seconds |
|
1143
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.0195 seconds |
|
1144
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01276 seconds |
|
1145
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01536 seconds |
|
1146
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.13573 seconds |
|
1147
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 3.16 seconds |
|
1148
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.08748 seconds |
|
1149
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.08885 seconds |
|
1150
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.41001 seconds |
|
1151
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.55411 seconds |
|
1152
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.4587 seconds |
|
1153
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.11429 seconds |
|
1154
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.01241 seconds |
|
1155
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.31399 seconds |
|
1156
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.74973 seconds |
|
1157
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 1.05 seconds |
|
1158
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 1.09 seconds |
|
1159
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 1.05 seconds |
|
1160
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.85028 seconds |
|
1161
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.65388 seconds |
|
1162
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.78486 seconds |
|
1163
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:8] | passed | 0.70772 seconds |
|
1164
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.0299 seconds |
|
1165
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.02249 seconds |
|
1166
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.16104 seconds |
|
1167
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.44622 seconds |
|
1168
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 2.1 seconds |
|
1169
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.4546 seconds |
|
1170
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.01892 seconds |
|
1171
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.55727 seconds |
|
1172
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.10179 seconds |
|
1173
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.10411 seconds |
|
1174
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.32948 seconds |
|
1175
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.1026 seconds |
|
1176
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.1026 seconds |
|
1177
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01152 seconds |
|
1178
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.11016 seconds |
|
1179
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.45036 seconds |
|
1180
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.37282 seconds |
|
1181
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.30901 seconds |
|
1182
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.34085 seconds |
|
1183
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.37828 seconds |
|
1184
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.30093 seconds |
|
1185
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.32499 seconds |
|
1186
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.13975 seconds |
|
1187
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.1028 seconds |
|
1188
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.36395 seconds |
|
1189
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.38679 seconds |
|
1190
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.09093 seconds |
|
1191
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.17098 seconds |
|
1192
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.08584 seconds |
|
1193
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.11036 seconds |
|
1194
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.33151 seconds |
|
1195
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 3.35 seconds |
|
1196
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 2.75 seconds |
|
1197
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.39165 seconds |
|
1198
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.37953 seconds |
|
1199
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 2.17 seconds |
|
1200
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.4478 seconds |
|
1201
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.51125 seconds |
|
1202
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.36491 seconds |
|
1203
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.69062 seconds |
|
1204
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.57644 seconds |
|
1205
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.57996 seconds |
|
1206
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.40419 seconds |
|
1207
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02271 seconds |
|
1208
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01682 seconds |
|
1209
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01167 seconds |
|
1210
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01267 seconds |
|
1211
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.20351 seconds |
|
1212
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.2228 seconds |
|
1213
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.19798 seconds |
|
1214
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.21992 seconds |
|
1215
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.03327 seconds |
|
1216
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.26652 seconds |
|
1217
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.42326 seconds |
|
1218
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.84436 seconds |
|
1219
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.12164 seconds |
|
1220
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 2.93 seconds |
|
1221
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.0312 seconds |
|
1222
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.03159 seconds |
|
1223
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.02553 seconds |
|
1224
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.03542 seconds |
|
1225
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.35803 seconds |
|
1226
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 1.38 seconds |
|
1227
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.65014 seconds |
|
1228
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 1.01 seconds |
|
1229
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.03117 seconds |
|
1230
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.02579 seconds |
|
1231
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02906 seconds |
|
1232
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.04924 seconds |
|
1233
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.03128 seconds |
|
1234
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.63301 seconds |
|
1235
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.30123 seconds |
|
1236
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02158 seconds |
|
1237
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.03442 seconds |
|
1238
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.39909 seconds |
|
1239
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.06193 seconds |
|
1240
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 3.72 seconds |
|
1241
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.12483 seconds |
|
1242
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.12953 seconds |
|
1243
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.10445 seconds |
|
1244
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.1714 seconds |
|
1245
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 2.61 seconds |
|
1246
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.16498 seconds |
|
1247
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.16464 seconds |
|
1248
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.12202 seconds |
|
1249
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.11899 seconds |
|
1250
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.12103 seconds |
|
1251
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.16824 seconds |
|
1252
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.12967 seconds |
|
1253
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.12681 seconds |
|
1254
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.21943 seconds |
|
1255
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.11627 seconds |
|
1256
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.2078 seconds |
|
1257
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.1068 seconds |
|
1258
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 1.32 seconds |
|
1259
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.21181 seconds |
|
1260
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 1.1 seconds |
|
1261
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.16836 seconds |
|
1262
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.4194 seconds |
|
1263
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.60808 seconds |
|
1264
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.01506 seconds |
|
1265
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.12638 seconds |
|
1266
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.55465 seconds |
|
1267
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.12538 seconds |
|
1268
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.13426 seconds |
|
1269
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.1169 seconds |
|
1270
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.12201 seconds |
|
1271
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.12052 seconds |
|
1272
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01629 seconds |
|
1273
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.13679 seconds |
|
1274
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.12892 seconds |
|
1275
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.72146 seconds |
|
1276
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | failed | 0.15311 seconds |
|
1277
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.26662 seconds |
|
1278
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.29294 seconds |
|
1279
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.12058 seconds |
|
1280
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.11801 seconds |
|
1281
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.11397 seconds |
|
1282
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.10658 seconds |
|
1283
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.11205 seconds |
|