blacklight-spotlight 2.0.0.rc1 → 2.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/controllers/concerns/spotlight/controller.rb +1 -3
- data/app/controllers/spotlight/pages_controller.rb +1 -1
- data/app/helpers/spotlight/languages_helper.rb +1 -1
- data/app/models/spotlight/language.rb +1 -1
- data/app/views/spotlight/exhibits/_languages.html.erb +3 -2
- data/app/views/spotlight/translations/_browse_categories.html.erb +1 -1
- data/app/views/spotlight/translations/_page.html.erb +1 -1
- data/app/views/spotlight/translations/_pages_table.html.erb +2 -2
- data/app/views/spotlight/translations/edit.html.erb +1 -1
- data/config/locales/spotlight.en.yml +1 -1
- data/lib/spotlight/engine.rb +1 -1
- data/lib/spotlight/version.rb +1 -1
- data/spec/examples.txt +1285 -1170
- data/spec/helpers/spotlight/languages_helper_spec.rb +1 -1
- data/spec/spec_helper.rb +0 -2
- data/spec/test_app_templates/Gemfile.extra +2 -0
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15a6318f31deea4258de497a1c3e21b49e132ea9
|
4
|
+
data.tar.gz: ce108f9e7bed43cf3779e49f19ae89deb5faf4cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 434bb66af2720d87e66da6425a941bd509e3eb78fb38aeef2ac3b3ed7a1f7e8429df3bd8923b53ce23194bdd9e54ab87dd2779cf27b425452acb3a516a975a1f
|
7
|
+
data.tar.gz: 77a0918b9a6e79b096ac41a9e53357797bff47ccdd75c5c7163fac26450ef8129f7db9cf3c2a4d107cabce3f66ba26892e3711b6915e9295d052adc04cb4864a
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
spotlight
|
2
2
|
=========
|
3
3
|
|
4
|
-
[![Build Status](https://travis-ci.org/projectblacklight/spotlight.png?branch=master)](https://travis-ci.org/projectblacklight/spotlight) | [![
|
4
|
+
[![Build Status](https://travis-ci.org/projectblacklight/spotlight.png?branch=master)](https://travis-ci.org/projectblacklight/spotlight) | [![Gem Version](https://badge.fury.io/rb/blacklight-spotlight.png)](http://badge.fury.io/rb/blacklight-spotlight) | [Release Notes](https://github.com/projectblacklight/spotlight/releases) | [Design Documents](https://github.com/projectblacklight/spotlight/releases/tag/v0.0.0)
|
5
5
|
|
6
6
|
Spotlight is open source software that enables librarians, curators, and other content experts to easily build feature-rich websites that showcase collections and objects from a digital repository, uploaded items, or a combination of the two. Spotlight is a plug-in for [Blacklight](https://github.com/projectblacklight/blacklight), an open source, Ruby on Rails Engine that provides a basic discovery interface for searching an Apache Solr index.
|
7
7
|
|
@@ -54,9 +54,7 @@ module Spotlight
|
|
54
54
|
|
55
55
|
def default_url_options
|
56
56
|
return super unless current_exhibit
|
57
|
-
|
58
|
-
|
59
|
-
super.merge(locale: I18n.locale)
|
57
|
+
super.merge(locale: (I18n.locale if I18n.locale != I18n.default_locale))
|
60
58
|
end
|
61
59
|
|
62
60
|
# overwrites Blacklight::Controller#blacklight_config
|
@@ -95,7 +95,7 @@ module Spotlight
|
|
95
95
|
model_name = @page.class.model_name.human.downcase
|
96
96
|
if new_page.save
|
97
97
|
redirect_to(
|
98
|
-
edit_exhibit_translations_path(current_exhibit,
|
98
|
+
edit_exhibit_translations_path(current_exhibit, language: clone_params, tab: 'pages'),
|
99
99
|
notice: t(:'helpers.submit.page.created', model: model_name)
|
100
100
|
)
|
101
101
|
else
|
@@ -8,7 +8,7 @@ module Spotlight
|
|
8
8
|
end
|
9
9
|
|
10
10
|
non_default_or_current_exhibit_languages_with_labels = non_default_or_current_exhibit_languages.map do |locale|
|
11
|
-
[t("locales.#{locale
|
11
|
+
[t("locales.#{locale}"), locale]
|
12
12
|
end
|
13
13
|
|
14
14
|
non_default_or_current_exhibit_languages_with_labels.sort_by { |label, _locale| label }
|
@@ -10,9 +10,10 @@
|
|
10
10
|
<% end %>
|
11
11
|
|
12
12
|
<h3><%= t :'spotlight.exhibits.languages.current_header' %></h3>
|
13
|
-
<p class="instructions"><%= t :'spotlight.exhibits.languages.current_instructions' %></p>
|
14
13
|
|
15
14
|
<% if current_exhibit.languages.any? && current_exhibit.languages.last.persisted? %>
|
15
|
+
<p class="instructions"><%= t :'spotlight.exhibits.languages.current_instructions' %></p>
|
16
|
+
|
16
17
|
<%= bootstrap_form_for current_exhibit, layout: :horizontal do |f| %>
|
17
18
|
<div class="row">
|
18
19
|
<div class="col-md-8">
|
@@ -28,7 +29,7 @@
|
|
28
29
|
<% current_exhibit.languages.each do |language| %>
|
29
30
|
<%= f.fields_for :languages, language do |languages| %>
|
30
31
|
<tr>
|
31
|
-
<td><%= t("locales.#{language.locale
|
32
|
+
<td><%= t("locales.#{language.locale}") %></td>
|
32
33
|
<td class='text-center'>
|
33
34
|
<div class='checkbox'>
|
34
35
|
<%= languages.label :public, class: 'sr-only' %>
|
@@ -11,7 +11,7 @@
|
|
11
11
|
</div>
|
12
12
|
<div class="col-xs-7">
|
13
13
|
<strong>
|
14
|
-
<%= t :'spotlight.exhibits.translations.browse_categories.translation_column_label', language: t("locales.#{@language
|
14
|
+
<%= t :'spotlight.exhibits.translations.browse_categories.translation_column_label', language: t("locales.#{@language}") %>
|
15
15
|
</strong>
|
16
16
|
</div>
|
17
17
|
</div>
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<table class="table table-striped">
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
|
-
<th><%= t('spotlight.exhibits.translations.pages.table_header.last_updated', language: t(:"locales.#{I18n.default_locale
|
4
|
+
<th><%= t('spotlight.exhibits.translations.pages.table_header.last_updated', language: t(:"locales.#{I18n.default_locale}")) %></th>
|
5
5
|
<th class="text-center"><%= t('spotlight.exhibits.translations.pages.table_header.default_published') %></th>
|
6
|
-
<th><%= t('spotlight.exhibits.translations.pages.table_header.last_updated', language: t(:"locales.#{@language
|
6
|
+
<th><%= t('spotlight.exhibits.translations.pages.table_header.last_updated', language: t(:"locales.#{@language}")) %></th>
|
7
7
|
<th class='text-center'><%= t('spotlight.exhibits.translations.pages.table_header.language_published') %></th>
|
8
8
|
<th class='text-center'><%= t('spotlight.exhibits.translations.pages.table_header.actions') %></th>
|
9
9
|
</tr>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<% current_exhibit.available_locales.each do |language| %>
|
9
9
|
<li role="presentation" class="<%= 'active' if @language == language %>">
|
10
10
|
<%= link_to spotlight.edit_exhibit_translations_path(current_exhibit, language: language) do %>
|
11
|
-
<%= t("locales.#{language
|
11
|
+
<%= t("locales.#{language}") %>
|
12
12
|
<% end %>
|
13
13
|
</li>
|
14
14
|
<% end %>
|
data/lib/spotlight/engine.rb
CHANGED
data/lib/spotlight/version.rb
CHANGED
data/spec/examples.txt
CHANGED
@@ -1,1173 +1,1288 @@
|
|
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/browse_controller_spec.rb[1:
|
34
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3
|
35
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
36
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
37
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
38
|
-
./spec/controllers/spotlight/
|
39
|
-
./spec/controllers/spotlight/
|
40
|
-
./spec/controllers/spotlight/
|
41
|
-
./spec/controllers/spotlight/
|
42
|
-
./spec/controllers/spotlight/
|
43
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
44
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
45
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
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:
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
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:6:
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
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/catalog_controller_spec.rb[1:
|
83
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
84
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
85
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
86
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
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/
|
99
|
-
./spec/controllers/spotlight/
|
100
|
-
./spec/controllers/spotlight/
|
101
|
-
./spec/controllers/spotlight/
|
102
|
-
./spec/controllers/spotlight/
|
103
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:
|
104
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
105
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
106
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
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/
|
118
|
-
./spec/controllers/spotlight/
|
119
|
-
./spec/controllers/spotlight/
|
120
|
-
./spec/controllers/spotlight/
|
121
|
-
./spec/controllers/spotlight/
|
122
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
123
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1
|
127
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
128
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
129
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
130
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
131
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
132
|
-
./spec/controllers/spotlight/
|
133
|
-
./spec/controllers/spotlight/
|
134
|
-
./spec/controllers/spotlight/
|
135
|
-
./spec/controllers/spotlight/
|
136
|
-
./spec/controllers/spotlight/
|
137
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:
|
138
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1: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/feature_pages_controller_spec.rb[1:
|
146
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
147
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
148
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
149
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
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/controllers/spotlight/
|
238
|
-
./spec/controllers/spotlight/
|
239
|
-
./spec/controllers/spotlight/
|
240
|
-
./spec/controllers/spotlight/
|
241
|
-
./spec/controllers/spotlight/
|
242
|
-
./spec/controllers/spotlight/
|
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/
|
260
|
-
./spec/
|
261
|
-
./spec/
|
262
|
-
./spec/
|
263
|
-
./spec/
|
264
|
-
./spec/
|
265
|
-
./spec/
|
266
|
-
./spec/
|
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/
|
356
|
-
./spec/features/
|
357
|
-
./spec/features/
|
358
|
-
./spec/features/
|
359
|
-
./spec/features/
|
360
|
-
./spec/features/
|
361
|
-
./spec/features/
|
362
|
-
./spec/features/
|
363
|
-
./spec/features/
|
364
|
-
./spec/features/
|
365
|
-
./spec/features/
|
366
|
-
./spec/features/
|
367
|
-
./spec/features/
|
368
|
-
./spec/features/
|
369
|
-
./spec/features/
|
370
|
-
./spec/features/
|
371
|
-
./spec/features/
|
372
|
-
./spec/features/
|
373
|
-
./spec/features/
|
374
|
-
./spec/features/
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.01524 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.05999 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.06526 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.0848 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.10046 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.11869 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.1502 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.24919 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.13819 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.11743 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.15659 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.15438 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.13261 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.11903 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.1652 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.1612 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.11546 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.09594 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.15 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.03014 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.04374 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.02926 seconds |
|
25
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.07909 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.05943 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.0852 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.107 seconds |
|
29
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.05985 seconds |
|
30
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.0706 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.13308 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.12783 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.13432 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.10106 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.10221 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.10922 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.14058 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.11666 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.16994 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.15741 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.11979 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.7134 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.00931 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.01993 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.01172 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.07168 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.05993 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.14387 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.09025 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.09933 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.11496 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.07524 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.10686 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.2105 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.0721 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.10552 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.09521 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.68365 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.07629 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.06854 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.06588 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.0876 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.07026 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.07778 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.12718 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.10252 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.16836 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.28576 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.19093 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.1868 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.09255 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.13878 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.09205 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.06429 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.05934 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07634 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.11064 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.1048 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.13424 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.10491 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01154 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01191 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.06087 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.1372 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.07602 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.01303 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.01147 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01614 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.05649 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.05723 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.06742 seconds |
|
92
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.06444 seconds |
|
93
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.02385 seconds |
|
94
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.06977 seconds |
|
95
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.07609 seconds |
|
96
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.10246 seconds |
|
97
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.09184 seconds |
|
98
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.08799 seconds |
|
99
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.08585 seconds |
|
100
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.14751 seconds |
|
101
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.11608 seconds |
|
102
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.1212 seconds |
|
103
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.06176 seconds |
|
104
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.10691 seconds |
|
105
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.10826 seconds |
|
106
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.10084 seconds |
|
107
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.09891 seconds |
|
108
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.15008 seconds |
|
109
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.12878 seconds |
|
110
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.09754 seconds |
|
111
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.12037 seconds |
|
112
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.13138 seconds |
|
113
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.13225 seconds |
|
114
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.12722 seconds |
|
115
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.09144 seconds |
|
116
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.13431 seconds |
|
117
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.18258 seconds |
|
118
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.09622 seconds |
|
119
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.09647 seconds |
|
120
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.06424 seconds |
|
121
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.09939 seconds |
|
122
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.0675 seconds |
|
123
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.05412 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.0558 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.05524 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.05871 seconds |
|
127
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.0728 seconds |
|
128
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.05377 seconds |
|
129
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.05931 seconds |
|
130
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | failed | 0.05814 seconds |
|
131
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.09508 seconds |
|
132
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.07453 seconds |
|
133
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.2145 seconds |
|
134
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.0853 seconds |
|
135
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.07587 seconds |
|
136
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.22168 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.08521 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.15954 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.09783 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.18075 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.13099 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.11167 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.07963 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.17588 seconds |
|
145
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.10443 seconds |
|
146
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.10696 seconds |
|
147
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.10752 seconds |
|
148
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.12606 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.14533 seconds |
|
150
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.2605 seconds |
|
151
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.31736 seconds |
|
152
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.30377 seconds |
|
153
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.19747 seconds |
|
154
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.10665 seconds |
|
155
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.23443 seconds |
|
156
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.21105 seconds |
|
157
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.13488 seconds |
|
158
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.11669 seconds |
|
159
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.03391 seconds |
|
160
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.04029 seconds |
|
161
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.04685 seconds |
|
162
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.04158 seconds |
|
163
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.11649 seconds |
|
164
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.08965 seconds |
|
165
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.12181 seconds |
|
166
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.07359 seconds |
|
167
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.10795 seconds |
|
168
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.11352 seconds |
|
169
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.20422 seconds |
|
170
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.25199 seconds |
|
171
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.17112 seconds |
|
172
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.07148 seconds |
|
173
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.10608 seconds |
|
174
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.10246 seconds |
|
175
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.36092 seconds |
|
176
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.15592 seconds |
|
177
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.22849 seconds |
|
178
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.2302 seconds |
|
179
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.11526 seconds |
|
180
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.07341 seconds |
|
181
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.10656 seconds |
|
182
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.10478 seconds |
|
183
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.10328 seconds |
|
184
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.06955 seconds |
|
185
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.09595 seconds |
|
186
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.10926 seconds |
|
187
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.10585 seconds |
|
188
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.07114 seconds |
|
189
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06983 seconds |
|
190
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.11707 seconds |
|
191
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.10768 seconds |
|
192
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.12331 seconds |
|
193
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.11441 seconds |
|
194
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.08471 seconds |
|
195
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.0671 seconds |
|
196
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.08255 seconds |
|
197
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.08232 seconds |
|
198
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.0898 seconds |
|
199
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.05747 seconds |
|
200
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.12494 seconds |
|
201
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.16057 seconds |
|
202
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.13318 seconds |
|
203
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.07664 seconds |
|
204
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.11404 seconds |
|
205
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.14227 seconds |
|
206
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.07959 seconds |
|
207
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.10807 seconds |
|
208
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.10308 seconds |
|
209
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.08471 seconds |
|
210
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.10068 seconds |
|
211
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.07324 seconds |
|
212
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.11081 seconds |
|
213
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.09984 seconds |
|
214
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.12861 seconds |
|
215
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.50058 seconds |
|
216
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.08924 seconds |
|
217
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.07518 seconds |
|
218
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.08529 seconds |
|
219
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.11052 seconds |
|
220
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.07619 seconds |
|
221
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.09104 seconds |
|
222
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05525 seconds |
|
223
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06367 seconds |
|
224
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.09576 seconds |
|
225
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.07522 seconds |
|
226
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.17288 seconds |
|
227
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.08758 seconds |
|
228
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.08352 seconds |
|
229
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.08725 seconds |
|
230
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.07967 seconds |
|
231
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.07126 seconds |
|
232
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.08632 seconds |
|
233
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.10984 seconds |
|
234
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.11298 seconds |
|
235
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.26465 seconds |
|
236
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.16901 seconds |
|
237
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.08641 seconds |
|
238
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.13359 seconds |
|
239
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.10755 seconds |
|
240
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.08929 seconds |
|
241
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.13354 seconds |
|
242
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.02209 seconds |
|
243
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.04407 seconds |
|
244
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.05665 seconds |
|
245
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.20872 seconds |
|
246
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | failed | 0.01763 seconds |
|
247
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.0745 seconds |
|
248
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.09075 seconds |
|
249
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.07171 seconds |
|
250
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.09766 seconds |
|
251
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.10854 seconds |
|
252
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.09191 seconds |
|
253
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.08156 seconds |
|
254
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.17209 seconds |
|
255
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.11147 seconds |
|
256
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.16788 seconds |
|
257
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.06199 seconds |
|
258
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.08622 seconds |
|
259
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.06176 seconds |
|
260
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.10644 seconds |
|
261
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.09729 seconds |
|
262
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.0133 seconds |
|
263
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.08893 seconds |
|
264
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.1206 seconds |
|
265
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.09052 seconds |
|
266
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.08492 seconds |
|
267
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 0.1771 seconds |
|
268
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.47135 seconds |
|
269
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.59047 seconds |
|
270
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.0977 seconds |
|
271
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 1.49 seconds |
|
272
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.25403 seconds |
|
273
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.69973 seconds |
|
274
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.30973 seconds |
|
275
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.43345 seconds |
|
276
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 1.18 seconds |
|
277
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.12603 seconds |
|
278
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.34379 seconds |
|
279
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.12804 seconds |
|
280
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.11988 seconds |
|
281
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.1481 seconds |
|
282
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.74565 seconds |
|
283
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 2.98 seconds |
|
284
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 4.69 seconds |
|
285
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 2.34 seconds |
|
286
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 1.59 seconds |
|
287
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.19916 seconds |
|
288
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.12 seconds |
|
289
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 1.12 seconds |
|
290
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.27992 seconds |
|
291
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.51222 seconds |
|
292
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.33754 seconds |
|
293
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.51747 seconds |
|
294
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.37101 seconds |
|
295
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.08121 seconds |
|
296
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.21272 seconds |
|
297
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.17781 seconds |
|
298
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.20841 seconds |
|
299
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.21077 seconds |
|
300
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.16943 seconds |
|
301
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.20583 seconds |
|
302
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.75355 seconds |
|
303
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.1864 seconds |
|
304
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.25078 seconds |
|
305
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.30409 seconds |
|
306
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.71116 seconds |
|
307
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.43722 seconds |
|
308
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.18644 seconds |
|
309
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.0916 seconds |
|
310
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.20876 seconds |
|
311
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.31803 seconds |
|
312
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.16078 seconds |
|
313
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.1239 seconds |
|
314
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.28308 seconds |
|
315
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.31925 seconds |
|
316
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.34899 seconds |
|
317
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.39024 seconds |
|
318
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.31142 seconds |
|
319
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 2.03 seconds |
|
320
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.54001 seconds |
|
321
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.34316 seconds |
|
322
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.19843 seconds |
|
323
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.15603 seconds |
|
324
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.33846 seconds |
|
325
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.17808 seconds |
|
326
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.35276 seconds |
|
327
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.54805 seconds |
|
328
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.42704 seconds |
|
329
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.46145 seconds |
|
330
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.07184 seconds |
|
331
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.30935 seconds |
|
332
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 2.7 seconds |
|
333
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.13186 seconds |
|
334
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.17058 seconds |
|
335
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.35416 seconds |
|
336
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.05 seconds |
|
337
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 1.17 seconds |
|
338
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.87365 seconds |
|
339
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 1.24 seconds |
|
340
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.68883 seconds |
|
341
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.30776 seconds |
|
342
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.69737 seconds |
|
343
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.56562 seconds |
|
344
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 1.19 seconds |
|
345
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.20161 seconds |
|
346
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.3046 seconds |
|
347
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.46302 seconds |
|
348
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.39459 seconds |
|
349
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 0.25168 seconds |
|
350
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 0.54197 seconds |
|
351
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 0.91358 seconds |
|
352
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 0.63001 seconds |
|
353
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 0.81627 seconds |
|
354
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 0.82927 seconds |
|
355
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 1.62 seconds |
|
356
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 0.92752 seconds |
|
357
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 1.04 seconds |
|
358
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 0.91728 seconds |
|
359
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 2.94 seconds |
|
360
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 0.54302 seconds |
|
361
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 0.1885 seconds |
|
362
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 8.03 seconds |
|
363
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 0.34366 seconds |
|
364
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 2.65 seconds |
|
365
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 0.45582 seconds |
|
366
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 0.19751 seconds |
|
367
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 1.71 seconds |
|
368
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 0.19539 seconds |
|
369
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 1.55 seconds |
|
370
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 0.21669 seconds |
|
371
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 1.91 seconds |
|
372
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 0.27088 seconds |
|
373
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 0.51584 seconds |
|
374
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | failed | 1.46 seconds |
|
375
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 0.36424 seconds |
|
376
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:6:1] | passed | 0.95751 seconds |
|
377
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.54142 seconds |
|
378
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | failed | 0.14168 seconds |
|
379
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.1843 seconds |
|
380
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.14926 seconds |
|
381
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.16405 seconds |
|
382
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.15526 seconds |
|
383
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.17134 seconds |
|
384
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.31832 seconds |
|
385
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.32178 seconds |
|
386
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.2767 seconds |
|
387
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.62 seconds |
|
388
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.36497 seconds |
|
389
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 0.77532 seconds |
|
390
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.49635 seconds |
|
391
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.27117 seconds |
|
392
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.25711 seconds |
|
393
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 1.43 seconds |
|
394
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.18097 seconds |
|
395
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.03 seconds |
|
396
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.17 seconds |
|
397
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.24258 seconds |
|
398
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.21728 seconds |
|
399
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.64823 seconds |
|
400
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.45 seconds |
|
401
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 1.21 seconds |
|
402
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 2.34 seconds |
|
403
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 3.21 seconds |
|
404
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.97 seconds |
|
405
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 2.95 seconds |
|
406
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 3.29 seconds |
|
407
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.86 seconds |
|
408
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 3.31 seconds |
|
409
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 1.3 seconds |
|
410
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 2.87 seconds |
|
411
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.42 seconds |
|
412
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.42 seconds |
|
413
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.78 seconds |
|
414
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.71 seconds |
|
415
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.12 seconds |
|
416
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.83 seconds |
|
417
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | failed | 1.88 seconds |
|
418
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.99002 seconds |
|
419
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.54 seconds |
|
420
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.59 seconds |
|
421
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 3.23 seconds |
|
422
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 1.12 seconds |
|
423
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 2.23 seconds |
|
424
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.33 seconds |
|
425
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.32 seconds |
|
426
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.24 seconds |
|
427
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.55326 seconds |
|
428
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 1.02 seconds |
|
429
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 2.06 seconds |
|
375
430
|
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.29 seconds |
|
376
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.
|
377
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 1.
|
378
|
-
./spec/features/javascript/
|
379
|
-
./spec/features/javascript/
|
380
|
-
./spec/features/javascript/
|
381
|
-
./spec/features/javascript/
|
382
|
-
./spec/features/javascript/
|
383
|
-
./spec/features/javascript/
|
384
|
-
./spec/features/javascript/
|
385
|
-
./spec/features/javascript/
|
386
|
-
./spec/features/javascript/
|
387
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
388
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
389
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
390
|
-
./spec/features/javascript/
|
391
|
-
./spec/features/javascript/
|
392
|
-
./spec/features/javascript/
|
393
|
-
./spec/features/
|
394
|
-
./spec/features/
|
395
|
-
./spec/features/
|
396
|
-
./spec/features/main_navigation_spec.rb[1:
|
397
|
-
./spec/features/main_navigation_spec.rb[1:
|
398
|
-
./spec/features/main_navigation_spec.rb[1:
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/
|
401
|
-
./spec/features/
|
402
|
-
./spec/features/
|
403
|
-
./spec/features/report_a_problem_spec.rb[1:
|
404
|
-
./spec/features/
|
405
|
-
./spec/features/
|
406
|
-
./spec/features/
|
407
|
-
./spec/features/site_admin_management_spec.rb[1:
|
408
|
-
./spec/features/site_admin_management_spec.rb[1:
|
409
|
-
./spec/features/site_admin_management_spec.rb[1:
|
410
|
-
./spec/features/site_admin_management_spec.rb[1:
|
411
|
-
./spec/features/
|
412
|
-
./spec/features/
|
413
|
-
./spec/features/
|
414
|
-
./spec/features/site_masthead_spec.rb[1:
|
415
|
-
./spec/features/
|
416
|
-
./spec/features/
|
417
|
-
./spec/features/
|
418
|
-
./spec/
|
419
|
-
./spec/
|
420
|
-
./spec/
|
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:3: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/application_helper_spec.rb[1:
|
431
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
432
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
433
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
434
|
-
./spec/helpers/spotlight/
|
435
|
-
./spec/helpers/spotlight/
|
436
|
-
./spec/helpers/spotlight/
|
437
|
-
./spec/helpers/spotlight/
|
438
|
-
./spec/helpers/spotlight/
|
439
|
-
./spec/helpers/spotlight/
|
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/crud_link_helpers_spec.rb[1:
|
452
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
453
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
454
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:
|
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/
|
477
|
-
./spec/helpers/spotlight/
|
478
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
479
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
480
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
481
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
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/helpers/spotlight/
|
489
|
-
./spec/helpers/spotlight/
|
490
|
-
./spec/helpers/spotlight/
|
491
|
-
./spec/helpers/spotlight/
|
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/
|
517
|
-
./spec/
|
518
|
-
./spec/lib/
|
519
|
-
./spec/lib/
|
520
|
-
./spec/lib/
|
521
|
-
./spec/lib/
|
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/
|
544
|
-
./spec/
|
545
|
-
./spec/
|
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/
|
560
|
-
./spec/models/
|
561
|
-
./spec/models/
|
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/solr_document_spec.rb[1:
|
569
|
-
./spec/models/solr_document_spec.rb[1:
|
570
|
-
./spec/models/solr_document_spec.rb[1:
|
571
|
-
./spec/models/solr_document_spec.rb[1:
|
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/
|
589
|
-
./spec/models/
|
590
|
-
./spec/models/
|
591
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
592
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
593
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
594
|
-
./spec/models/spotlight/ability_spec.rb[1:4
|
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/ability_spec.rb[1:
|
602
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
603
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
604
|
-
./spec/models/spotlight/ability_spec.rb[1:4
|
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/
|
641
|
-
./spec/models/spotlight/
|
642
|
-
./spec/models/spotlight/
|
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:
|
650
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
651
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
652
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
653
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
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:
|
662
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
663
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9
|
664
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10
|
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/blacklight_configuration_spec.rb[1:
|
681
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
682
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
683
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
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/
|
747
|
-
./spec/models/spotlight/
|
748
|
-
./spec/models/spotlight/
|
749
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
750
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
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/models/spotlight/
|
919
|
-
./spec/models/spotlight/
|
920
|
-
./spec/models/spotlight/
|
921
|
-
./spec/models/spotlight/
|
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/
|
1057
|
-
./spec/
|
1058
|
-
./spec/
|
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/
|
1092
|
-
./spec/views/
|
1093
|
-
./spec/views/
|
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/
|
1171
|
-
./spec/views/spotlight/
|
1172
|
-
./spec/views/spotlight/
|
1173
|
-
./spec/views/spotlight/
|
431
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.53043 seconds |
|
432
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 1.21 seconds |
|
433
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.54466 seconds |
|
434
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.52891 seconds |
|
435
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 1.64 seconds |
|
436
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.94729 seconds |
|
437
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.56208 seconds |
|
438
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 3 seconds |
|
439
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.87 seconds |
|
440
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.11 seconds |
|
441
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 0.97579 seconds |
|
442
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 7.72 seconds |
|
443
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 1.21 seconds |
|
444
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 1.22 seconds |
|
445
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 1.22 seconds |
|
446
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 0.99993 seconds |
|
447
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 0.98318 seconds |
|
448
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.98225 seconds |
|
449
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.89317 seconds |
|
450
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.08 seconds |
|
451
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.18055 seconds |
|
452
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.158 seconds |
|
453
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.31202 seconds |
|
454
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 2.86 seconds |
|
455
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 1.46 seconds |
|
456
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.17587 seconds |
|
457
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.44274 seconds |
|
458
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 31.8 seconds |
|
459
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.23069 seconds |
|
460
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 7.36 seconds |
|
461
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 1 second |
|
462
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.35009 seconds |
|
463
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.3402 seconds |
|
464
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.88924 seconds |
|
465
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.67594 seconds |
|
466
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.64 seconds |
|
467
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.6378 seconds |
|
468
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.63713 seconds |
|
469
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.12883 seconds |
|
470
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.24992 seconds |
|
471
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.20436 seconds |
|
472
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.11726 seconds |
|
473
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 2.42 seconds |
|
474
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.23648 seconds |
|
475
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.08292 seconds |
|
476
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01498 seconds |
|
477
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.0128 seconds |
|
478
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.01608 seconds |
|
479
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.01224 seconds |
|
480
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01238 seconds |
|
481
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.07329 seconds |
|
482
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01445 seconds |
|
483
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.0145 seconds |
|
484
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.07004 seconds |
|
485
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.09931 seconds |
|
486
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.0137 seconds |
|
487
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01645 seconds |
|
488
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01371 seconds |
|
489
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01675 seconds |
|
490
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01318 seconds |
|
491
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.01287 seconds |
|
492
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.03064 seconds |
|
493
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.02848 seconds |
|
494
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.01106 seconds |
|
495
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01482 seconds |
|
496
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.07032 seconds |
|
497
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.05977 seconds |
|
498
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.06475 seconds |
|
499
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.0904 seconds |
|
500
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.14197 seconds |
|
501
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.09023 seconds |
|
502
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.08044 seconds |
|
503
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.09049 seconds |
|
504
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.0788 seconds |
|
505
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.07523 seconds |
|
506
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.0859 seconds |
|
507
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.07703 seconds |
|
508
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.0171 seconds |
|
509
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.07775 seconds |
|
510
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01484 seconds |
|
511
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.0767 seconds |
|
512
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.02151 seconds |
|
513
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.07738 seconds |
|
514
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.21333 seconds |
|
515
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.20543 seconds |
|
516
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.1763 seconds |
|
517
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.01301 seconds |
|
518
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.01623 seconds |
|
519
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.01342 seconds |
|
520
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.07155 seconds |
|
521
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.07442 seconds |
|
522
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.07711 seconds |
|
523
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01358 seconds |
|
524
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.09983 seconds |
|
525
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.02493 seconds |
|
526
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.08721 seconds |
|
527
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.10145 seconds |
|
528
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.10807 seconds |
|
529
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.07038 seconds |
|
530
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.00975 seconds |
|
531
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.01008 seconds |
|
532
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.01106 seconds |
|
533
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.0827 seconds |
|
534
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.14242 seconds |
|
535
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.21728 seconds |
|
536
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.18763 seconds |
|
537
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.1105 seconds |
|
538
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.07461 seconds |
|
539
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.07524 seconds |
|
540
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.15388 seconds |
|
541
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.1859 seconds |
|
542
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.13656 seconds |
|
543
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.07455 seconds |
|
544
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.10097 seconds |
|
545
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.13461 seconds |
|
546
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.07211 seconds |
|
547
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.02898 seconds |
|
548
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.01392 seconds |
|
549
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.01673 seconds |
|
550
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.01103 seconds |
|
551
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.01796 seconds |
|
552
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.01861 seconds |
|
553
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01976 seconds |
|
554
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01882 seconds |
|
555
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.01734 seconds |
|
556
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.01825 seconds |
|
557
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.09409 seconds |
|
558
|
+
./spec/i18n_spec.rb[1:1] | pending | 2.35 seconds |
|
559
|
+
./spec/i18n_spec.rb[1:2] | passed | 3.46 seconds |
|
560
|
+
./spec/i18n_spec.rb[1:3] | passed | 1.16 seconds |
|
561
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.06013 seconds |
|
562
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.15273 seconds |
|
563
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00989 seconds |
|
564
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.3052 seconds |
|
565
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.11769 seconds |
|
566
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.34151 seconds |
|
567
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.14336 seconds |
|
568
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.15295 seconds |
|
569
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.12756 seconds |
|
570
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.14596 seconds |
|
571
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.07547 seconds |
|
572
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.06512 seconds |
|
573
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.13868 seconds |
|
574
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.13501 seconds |
|
575
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.08236 seconds |
|
576
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.08461 seconds |
|
577
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.13122 seconds |
|
578
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.09379 seconds |
|
579
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.02065 seconds |
|
580
|
+
./spec/lib/migration/page_language_spec.rb[1:1:1] | passed | 0.06445 seconds |
|
581
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.00832 seconds |
|
582
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.00938 seconds |
|
583
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.00939 seconds |
|
584
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.0097 seconds |
|
585
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00917 seconds |
|
586
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.01005 seconds |
|
587
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.05126 seconds |
|
588
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.00836 seconds |
|
589
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01035 seconds |
|
590
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.00881 seconds |
|
591
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.05752 seconds |
|
592
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.01197 seconds |
|
593
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.01134 seconds |
|
594
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.01118 seconds |
|
595
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.01238 seconds |
|
596
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.16437 seconds |
|
597
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.01093 seconds |
|
598
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.01109 seconds |
|
599
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.0112 seconds |
|
600
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.0106 seconds |
|
601
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.07039 seconds |
|
602
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.06187 seconds |
|
603
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.0616 seconds |
|
604
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.08837 seconds |
|
605
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.06434 seconds |
|
606
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.06972 seconds |
|
607
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.06503 seconds |
|
608
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.08655 seconds |
|
609
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.06491 seconds |
|
610
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.06819 seconds |
|
611
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.08386 seconds |
|
612
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00843 seconds |
|
613
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00843 seconds |
|
614
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.00873 seconds |
|
615
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00867 seconds |
|
616
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00884 seconds |
|
617
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.01848 seconds |
|
618
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.01174 seconds |
|
619
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.1178 seconds |
|
620
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.06022 seconds |
|
621
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.10973 seconds |
|
622
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.01432 seconds |
|
623
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.01677 seconds |
|
624
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.02672 seconds |
|
625
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.02795 seconds |
|
626
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.05887 seconds |
|
627
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.12032 seconds |
|
628
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.1184 seconds |
|
629
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.12543 seconds |
|
630
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.10984 seconds |
|
631
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.13291 seconds |
|
632
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.11964 seconds |
|
633
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.07335 seconds |
|
634
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.05432 seconds |
|
635
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.07076 seconds |
|
636
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.06039 seconds |
|
637
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.06921 seconds |
|
638
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.06402 seconds |
|
639
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00905 seconds |
|
640
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.00984 seconds |
|
641
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.01036 seconds |
|
642
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.00922 seconds |
|
643
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.01941 seconds |
|
644
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.0219 seconds |
|
645
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01258 seconds |
|
646
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.07344 seconds |
|
647
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.05704 seconds |
|
648
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.08514 seconds |
|
649
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.0581 seconds |
|
650
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.08832 seconds |
|
651
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.08622 seconds |
|
652
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.07915 seconds |
|
653
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.08868 seconds |
|
654
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.06049 seconds |
|
655
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.02155 seconds |
|
656
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.06306 seconds |
|
657
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.07167 seconds |
|
658
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.06997 seconds |
|
659
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.21257 seconds |
|
660
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.07778 seconds |
|
661
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.12125 seconds |
|
662
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.06372 seconds |
|
663
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.06725 seconds |
|
664
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.06731 seconds |
|
665
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.12536 seconds |
|
666
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.0639 seconds |
|
667
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.08887 seconds |
|
668
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.07017 seconds |
|
669
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.05866 seconds |
|
670
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.06303 seconds |
|
671
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.08612 seconds |
|
672
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.0768 seconds |
|
673
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.06142 seconds |
|
674
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.06662 seconds |
|
675
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.07115 seconds |
|
676
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.07161 seconds |
|
677
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.06989 seconds |
|
678
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.06464 seconds |
|
679
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.0651 seconds |
|
680
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.0635 seconds |
|
681
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.06296 seconds |
|
682
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.06385 seconds |
|
683
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.05997 seconds |
|
684
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.06137 seconds |
|
685
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.06512 seconds |
|
686
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.06194 seconds |
|
687
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.06337 seconds |
|
688
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.01427 seconds |
|
689
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01123 seconds |
|
690
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.08671 seconds |
|
691
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.07653 seconds |
|
692
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.05444 seconds |
|
693
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.08127 seconds |
|
694
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.07358 seconds |
|
695
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.08589 seconds |
|
696
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.06604 seconds |
|
697
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.00927 seconds |
|
698
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.1193 seconds |
|
699
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.0937 seconds |
|
700
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.05925 seconds |
|
701
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.06974 seconds |
|
702
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.07555 seconds |
|
703
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.08444 seconds |
|
704
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.09926 seconds |
|
705
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.0847 seconds |
|
706
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.08796 seconds |
|
707
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.06772 seconds |
|
708
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.06046 seconds |
|
709
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.06974 seconds |
|
710
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.05567 seconds |
|
711
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.07694 seconds |
|
712
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.06963 seconds |
|
713
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.064 seconds |
|
714
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.0667 seconds |
|
715
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.0852 seconds |
|
716
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.08536 seconds |
|
717
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.06059 seconds |
|
718
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.06457 seconds |
|
719
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.06221 seconds |
|
720
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.06611 seconds |
|
721
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.05658 seconds |
|
722
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.08726 seconds |
|
723
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.09434 seconds |
|
724
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.06946 seconds |
|
725
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.06548 seconds |
|
726
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.06749 seconds |
|
727
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.06191 seconds |
|
728
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.07096 seconds |
|
729
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.05952 seconds |
|
730
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.07458 seconds |
|
731
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.06423 seconds |
|
732
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.06947 seconds |
|
733
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.07862 seconds |
|
734
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.05675 seconds |
|
735
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.05534 seconds |
|
736
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.0641 seconds |
|
737
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.09846 seconds |
|
738
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.05899 seconds |
|
739
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.06313 seconds |
|
740
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.06526 seconds |
|
741
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.06697 seconds |
|
742
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.06599 seconds |
|
743
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.06336 seconds |
|
744
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.06432 seconds |
|
745
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.05504 seconds |
|
746
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.05947 seconds |
|
747
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.05981 seconds |
|
748
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.06652 seconds |
|
749
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.05524 seconds |
|
750
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.06154 seconds |
|
751
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.07334 seconds |
|
752
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.07738 seconds |
|
753
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.05734 seconds |
|
754
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.05945 seconds |
|
755
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.10826 seconds |
|
756
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.09146 seconds |
|
757
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.12164 seconds |
|
758
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.06355 seconds |
|
759
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.06121 seconds |
|
760
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.06415 seconds |
|
761
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.06975 seconds |
|
762
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.07966 seconds |
|
763
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.08363 seconds |
|
764
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.06235 seconds |
|
765
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.05564 seconds |
|
766
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.06738 seconds |
|
767
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.00996 seconds |
|
768
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.01248 seconds |
|
769
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.01428 seconds |
|
770
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.01699 seconds |
|
771
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.02716 seconds |
|
772
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.01319 seconds |
|
773
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.01351 seconds |
|
774
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.01714 seconds |
|
775
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.01855 seconds |
|
776
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.01041 seconds |
|
777
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.01741 seconds |
|
778
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.01266 seconds |
|
779
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.01325 seconds |
|
780
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00882 seconds |
|
781
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.08976 seconds |
|
782
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.06383 seconds |
|
783
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.06317 seconds |
|
784
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.06718 seconds |
|
785
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.0145 seconds |
|
786
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.06473 seconds |
|
787
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.06435 seconds |
|
788
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.01422 seconds |
|
789
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.05926 seconds |
|
790
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.013 seconds |
|
791
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.01519 seconds |
|
792
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01539 seconds |
|
793
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01855 seconds |
|
794
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.0701 seconds |
|
795
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.06804 seconds |
|
796
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.07492 seconds |
|
797
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.0731 seconds |
|
798
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.09033 seconds |
|
799
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.09908 seconds |
|
800
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.09921 seconds |
|
801
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.06292 seconds |
|
802
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.09146 seconds |
|
803
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.0814 seconds |
|
804
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.02262 seconds |
|
805
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.02508 seconds |
|
806
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.07274 seconds |
|
807
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.04431 seconds |
|
808
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:2] | passed | 0.07327 seconds |
|
809
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.03058 seconds |
|
810
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6] | passed | 0.02396 seconds |
|
811
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.13432 seconds |
|
812
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.11771 seconds |
|
813
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.06816 seconds |
|
814
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.06481 seconds |
|
815
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.0423 seconds |
|
816
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.0867 seconds |
|
817
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:2] | passed | 0.11867 seconds |
|
818
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.09506 seconds |
|
819
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.08111 seconds |
|
820
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.06345 seconds |
|
821
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:3:1] | passed | 0.07085 seconds |
|
822
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.06934 seconds |
|
823
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.06408 seconds |
|
824
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.07278 seconds |
|
825
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.0912 seconds |
|
826
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.08154 seconds |
|
827
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.07897 seconds |
|
828
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.02386 seconds |
|
829
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2] | passed | 0.02618 seconds |
|
830
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:3:1] | passed | 0.02377 seconds |
|
831
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:4:1] | passed | 0.02685 seconds |
|
832
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1:1] | passed | 0.07757 seconds |
|
833
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:2:1] | passed | 0.02561 seconds |
|
834
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.12732 seconds |
|
835
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20] | passed | 0.02332 seconds |
|
836
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.0801 seconds |
|
837
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:2] | passed | 0.06946 seconds |
|
838
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:3] | passed | 0.08327 seconds |
|
839
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.03585 seconds |
|
840
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.08716 seconds |
|
841
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.16305 seconds |
|
842
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.21526 seconds |
|
843
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.19936 seconds |
|
844
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.01009 seconds |
|
845
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.0623 seconds |
|
846
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.07327 seconds |
|
847
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.07081 seconds |
|
848
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.01068 seconds |
|
849
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.01237 seconds |
|
850
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.07867 seconds |
|
851
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.09728 seconds |
|
852
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.18896 seconds |
|
853
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.01245 seconds |
|
854
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.15342 seconds |
|
855
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.01624 seconds |
|
856
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.00828 seconds |
|
857
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.14354 seconds |
|
858
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.02412 seconds |
|
859
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.01512 seconds |
|
860
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01573 seconds |
|
861
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.03822 seconds |
|
862
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.07411 seconds |
|
863
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.05667 seconds |
|
864
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.06394 seconds |
|
865
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.07008 seconds |
|
866
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.00897 seconds |
|
867
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.01054 seconds |
|
868
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.0104 seconds |
|
869
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.01032 seconds |
|
870
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.07652 seconds |
|
871
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.06595 seconds |
|
872
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.09714 seconds |
|
873
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.07149 seconds |
|
874
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.07807 seconds |
|
875
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.00974 seconds |
|
876
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.01408 seconds |
|
877
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.0773 seconds |
|
878
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.06985 seconds |
|
879
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.06119 seconds |
|
880
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.06588 seconds |
|
881
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.01059 seconds |
|
882
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01049 seconds |
|
883
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.01372 seconds |
|
884
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.01034 seconds |
|
885
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.01044 seconds |
|
886
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.05944 seconds |
|
887
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.1087 seconds |
|
888
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.27248 seconds |
|
889
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.0601 seconds |
|
890
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.12236 seconds |
|
891
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.13047 seconds |
|
892
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.07575 seconds |
|
893
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.12912 seconds |
|
894
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.13212 seconds |
|
895
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.12343 seconds |
|
896
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.13903 seconds |
|
897
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.16864 seconds |
|
898
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.26453 seconds |
|
899
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.34902 seconds |
|
900
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.12326 seconds |
|
901
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.06223 seconds |
|
902
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.0714 seconds |
|
903
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.1682 seconds |
|
904
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.07166 seconds |
|
905
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.08623 seconds |
|
906
|
+
./spec/models/spotlight/page_spec.rb[1:14:2] | passed | 0.0809 seconds |
|
907
|
+
./spec/models/spotlight/page_spec.rb[1:14:3] | passed | 0.08142 seconds |
|
908
|
+
./spec/models/spotlight/page_spec.rb[1:14:4] | passed | 0.08966 seconds |
|
909
|
+
./spec/models/spotlight/page_spec.rb[1:14:5:1] | passed | 0.18838 seconds |
|
910
|
+
./spec/models/spotlight/page_spec.rb[1:14:6:1] | passed | 0.14443 seconds |
|
911
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.0739 seconds |
|
912
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.07748 seconds |
|
913
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.08925 seconds |
|
914
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.09484 seconds |
|
915
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.1012 seconds |
|
916
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.12128 seconds |
|
917
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.0916 seconds |
|
918
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.09166 seconds |
|
919
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.12998 seconds |
|
920
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.11516 seconds |
|
921
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.10126 seconds |
|
922
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.09635 seconds |
|
923
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.09772 seconds |
|
924
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.07917 seconds |
|
925
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.04588 seconds |
|
926
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.25 seconds |
|
927
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.28 seconds |
|
928
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.06853 seconds |
|
929
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.05802 seconds |
|
930
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.08284 seconds |
|
931
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.06429 seconds |
|
932
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.08883 seconds |
|
933
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.08353 seconds |
|
934
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.08042 seconds |
|
935
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.07035 seconds |
|
936
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.12995 seconds |
|
937
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.14532 seconds |
|
938
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.16484 seconds |
|
939
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.16951 seconds |
|
940
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.1524 seconds |
|
941
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.17998 seconds |
|
942
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.18959 seconds |
|
943
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.01451 seconds |
|
944
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01714 seconds |
|
945
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.01561 seconds |
|
946
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.01216 seconds |
|
947
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.05991 seconds |
|
948
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.24894 seconds |
|
949
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.08124 seconds |
|
950
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.07618 seconds |
|
951
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.11937 seconds |
|
952
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.08866 seconds |
|
953
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.12276 seconds |
|
954
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.08882 seconds |
|
955
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.07812 seconds |
|
956
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.07778 seconds |
|
957
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.07698 seconds |
|
958
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.08321 seconds |
|
959
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.08162 seconds |
|
960
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.08227 seconds |
|
961
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.0914 seconds |
|
962
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.11343 seconds |
|
963
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.08996 seconds |
|
964
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.08804 seconds |
|
965
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.0768 seconds |
|
966
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.07073 seconds |
|
967
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01304 seconds |
|
968
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01497 seconds |
|
969
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.01771 seconds |
|
970
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.02204 seconds |
|
971
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.09509 seconds |
|
972
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.03925 seconds |
|
973
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.00919 seconds |
|
974
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.0102 seconds |
|
975
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.00943 seconds |
|
976
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.00894 seconds |
|
977
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 0.15044 seconds |
|
978
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.1434 seconds |
|
979
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.13666 seconds |
|
980
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.14986 seconds |
|
981
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.16356 seconds |
|
982
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.17912 seconds |
|
983
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.14436 seconds |
|
984
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 1.04 seconds |
|
985
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.13002 seconds |
|
986
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.14643 seconds |
|
987
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.01952 seconds |
|
988
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.0088 seconds |
|
989
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.02863 seconds |
|
990
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.01856 seconds |
|
991
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01401 seconds |
|
992
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.01634 seconds |
|
993
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.09576 seconds |
|
994
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.22698 seconds |
|
995
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.0661 seconds |
|
996
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.1195 seconds |
|
997
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.11159 seconds |
|
998
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.07172 seconds |
|
999
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.07013 seconds |
|
1000
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.07217 seconds |
|
1001
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.07319 seconds |
|
1002
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.08219 seconds |
|
1003
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.01325 seconds |
|
1004
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.20059 seconds |
|
1005
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.05665 seconds |
|
1006
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.06152 seconds |
|
1007
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.05808 seconds |
|
1008
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.0599 seconds |
|
1009
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.08756 seconds |
|
1010
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.09873 seconds |
|
1011
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.06392 seconds |
|
1012
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.08048 seconds |
|
1013
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.01172 seconds |
|
1014
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.00918 seconds |
|
1015
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.01033 seconds |
|
1016
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.03229 seconds |
|
1017
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.01576 seconds |
|
1018
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.02466 seconds |
|
1019
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.05462 seconds |
|
1020
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.05406 seconds |
|
1021
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.05799 seconds |
|
1022
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.01116 seconds |
|
1023
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.00942 seconds |
|
1024
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.0112 seconds |
|
1025
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.06143 seconds |
|
1026
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.12035 seconds |
|
1027
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.07533 seconds |
|
1028
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.09906 seconds |
|
1029
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.0818 seconds |
|
1030
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.08892 seconds |
|
1031
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.12204 seconds |
|
1032
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.07421 seconds |
|
1033
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.13179 seconds |
|
1034
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.06902 seconds |
|
1035
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.09326 seconds |
|
1036
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.01158 seconds |
|
1037
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.01005 seconds |
|
1038
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.00986 seconds |
|
1039
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.0094 seconds |
|
1040
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00986 seconds |
|
1041
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.00953 seconds |
|
1042
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.00996 seconds |
|
1043
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00912 seconds |
|
1044
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.01107 seconds |
|
1045
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.0105 seconds |
|
1046
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.0091 seconds |
|
1047
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.01024 seconds |
|
1048
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.0099 seconds |
|
1049
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.11824 seconds |
|
1050
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.10344 seconds |
|
1051
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.06719 seconds |
|
1052
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.07318 seconds |
|
1053
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.09423 seconds |
|
1054
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.09199 seconds |
|
1055
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.0943 seconds |
|
1056
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.07279 seconds |
|
1057
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.0751 seconds |
|
1058
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.09297 seconds |
|
1059
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.08565 seconds |
|
1060
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.08301 seconds |
|
1061
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.17694 seconds |
|
1062
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.16788 seconds |
|
1063
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.20963 seconds |
|
1064
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.294 seconds |
|
1065
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.19145 seconds |
|
1066
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.19601 seconds |
|
1067
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.28914 seconds |
|
1068
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.19598 seconds |
|
1069
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.17763 seconds |
|
1070
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.26665 seconds |
|
1071
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.20118 seconds |
|
1072
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.28943 seconds |
|
1073
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.25717 seconds |
|
1074
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.24019 seconds |
|
1075
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.40467 seconds |
|
1076
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.22072 seconds |
|
1077
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.17295 seconds |
|
1078
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.35186 seconds |
|
1079
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.36082 seconds |
|
1080
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.34963 seconds |
|
1081
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.55541 seconds |
|
1082
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.24368 seconds |
|
1083
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.22999 seconds |
|
1084
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.22253 seconds |
|
1085
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.17944 seconds |
|
1086
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.22012 seconds |
|
1087
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.2484 seconds |
|
1088
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.20332 seconds |
|
1089
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.02653 seconds |
|
1090
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.07869 seconds |
|
1091
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.09235 seconds |
|
1092
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.04212 seconds |
|
1093
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.03276 seconds |
|
1094
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.03217 seconds |
|
1095
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.03076 seconds |
|
1096
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.02301 seconds |
|
1097
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.02744 seconds |
|
1098
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.12038 seconds |
|
1099
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.11291 seconds |
|
1100
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.1373 seconds |
|
1101
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.06117 seconds |
|
1102
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.16762 seconds |
|
1103
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.15541 seconds |
|
1104
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.14973 seconds |
|
1105
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.01119 seconds |
|
1106
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.01039 seconds |
|
1107
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.0108 seconds |
|
1108
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.00932 seconds |
|
1109
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.01696 seconds |
|
1110
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.01675 seconds |
|
1111
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.01685 seconds |
|
1112
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.02348 seconds |
|
1113
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.01872 seconds |
|
1114
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.06407 seconds |
|
1115
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.05737 seconds |
|
1116
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.0617 seconds |
|
1117
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.0587 seconds |
|
1118
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.20367 seconds |
|
1119
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.06625 seconds |
|
1120
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.13938 seconds |
|
1121
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.01258 seconds |
|
1122
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.25203 seconds |
|
1123
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.20463 seconds |
|
1124
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.12753 seconds |
|
1125
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.21468 seconds |
|
1126
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.29099 seconds |
|
1127
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.19718 seconds |
|
1128
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.07947 seconds |
|
1129
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.27454 seconds |
|
1130
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.18525 seconds |
|
1131
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.20745 seconds |
|
1132
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.27782 seconds |
|
1133
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.23505 seconds |
|
1134
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.2202 seconds |
|
1135
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.24288 seconds |
|
1136
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.23877 seconds |
|
1137
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.06378 seconds |
|
1138
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.10491 seconds |
|
1139
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.17203 seconds |
|
1140
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.16594 seconds |
|
1141
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.1428 seconds |
|
1142
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.28193 seconds |
|
1143
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.06941 seconds |
|
1144
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.0609 seconds |
|
1145
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.08581 seconds |
|
1146
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.09327 seconds |
|
1147
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.07636 seconds |
|
1148
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.07737 seconds |
|
1149
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01655 seconds |
|
1150
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01391 seconds |
|
1151
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.0139 seconds |
|
1152
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.08622 seconds |
|
1153
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 4.5 seconds |
|
1154
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03801 seconds |
|
1155
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.03675 seconds |
|
1156
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.13892 seconds |
|
1157
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.12417 seconds |
|
1158
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.25792 seconds |
|
1159
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.16755 seconds |
|
1160
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.04135 seconds |
|
1161
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.4198 seconds |
|
1162
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.14032 seconds |
|
1163
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.12663 seconds |
|
1164
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.12923 seconds |
|
1165
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.12855 seconds |
|
1166
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.13014 seconds |
|
1167
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.1411 seconds |
|
1168
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.76852 seconds |
|
1169
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.03421 seconds |
|
1170
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.0281 seconds |
|
1171
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.03518 seconds |
|
1172
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.06766 seconds |
|
1173
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.07924 seconds |
|
1174
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 1.13 seconds |
|
1175
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.02446 seconds |
|
1176
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.23858 seconds |
|
1177
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.06327 seconds |
|
1178
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.05492 seconds |
|
1179
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.07559 seconds |
|
1180
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.06983 seconds |
|
1181
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.07584 seconds |
|
1182
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01176 seconds |
|
1183
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01184 seconds |
|
1184
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.33707 seconds |
|
1185
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.33623 seconds |
|
1186
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.25694 seconds |
|
1187
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.25623 seconds |
|
1188
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.24345 seconds |
|
1189
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.30158 seconds |
|
1190
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.38432 seconds |
|
1191
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.20271 seconds |
|
1192
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.4794 seconds |
|
1193
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.06747 seconds |
|
1194
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.46695 seconds |
|
1195
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.09711 seconds |
|
1196
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.2022 seconds |
|
1197
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.0705 seconds |
|
1198
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.09961 seconds |
|
1199
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.23665 seconds |
|
1200
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 0.07087 seconds |
|
1201
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 2.71 seconds |
|
1202
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.17705 seconds |
|
1203
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 2.78 seconds |
|
1204
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.17759 seconds |
|
1205
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.19328 seconds |
|
1206
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | failed | 0.16605 seconds |
|
1207
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.18292 seconds |
|
1208
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.25073 seconds |
|
1209
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.28437 seconds |
|
1210
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.21289 seconds |
|
1211
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.73215 seconds |
|
1212
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.0253 seconds |
|
1213
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01745 seconds |
|
1214
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01195 seconds |
|
1215
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.0161 seconds |
|
1216
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.22642 seconds |
|
1217
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.18052 seconds |
|
1218
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.05875 seconds |
|
1219
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.06436 seconds |
|
1220
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.02023 seconds |
|
1221
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.23742 seconds |
|
1222
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.09095 seconds |
|
1223
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 1.36 seconds |
|
1224
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.0283 seconds |
|
1225
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 1.3 seconds |
|
1226
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.1522 seconds |
|
1227
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.02332 seconds |
|
1228
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.0226 seconds |
|
1229
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.02356 seconds |
|
1230
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.02705 seconds |
|
1231
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.05619 seconds |
|
1232
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.06755 seconds |
|
1233
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.15163 seconds |
|
1234
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.03153 seconds |
|
1235
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.03121 seconds |
|
1236
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02576 seconds |
|
1237
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.04316 seconds |
|
1238
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.02963 seconds |
|
1239
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.98092 seconds |
|
1240
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.42038 seconds |
|
1241
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02552 seconds |
|
1242
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.02631 seconds |
|
1243
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.03447 seconds |
|
1244
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.04236 seconds |
|
1245
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.80771 seconds |
|
1246
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.023 seconds |
|
1247
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.02148 seconds |
|
1248
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.02178 seconds |
|
1249
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.08736 seconds |
|
1250
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.7584 seconds |
|
1251
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.08776 seconds |
|
1252
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.08446 seconds |
|
1253
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.08476 seconds |
|
1254
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.10544 seconds |
|
1255
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.0735 seconds |
|
1256
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.08736 seconds |
|
1257
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.07621 seconds |
|
1258
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.20194 seconds |
|
1259
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.07403 seconds |
|
1260
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.2683 seconds |
|
1261
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.09107 seconds |
|
1262
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.10541 seconds |
|
1263
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.21182 seconds |
|
1264
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.46224 seconds |
|
1265
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.10703 seconds |
|
1266
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.04143 seconds |
|
1267
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.03608 seconds |
|
1268
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.20965 seconds |
|
1269
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.15567 seconds |
|
1270
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01316 seconds |
|
1271
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.22605 seconds |
|
1272
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.16204 seconds |
|
1273
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.1553 seconds |
|
1274
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.25225 seconds |
|
1275
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.17497 seconds |
|
1276
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.1603 seconds |
|
1277
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01638 seconds |
|
1278
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.16622 seconds |
|
1279
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.12113 seconds |
|
1280
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 1.03 seconds |
|
1281
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.09857 seconds |
|
1282
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.09103 seconds |
|
1283
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.17295 seconds |
|
1284
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.13617 seconds |
|
1285
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.12115 seconds |
|
1286
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.10413 seconds |
|
1287
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.0722 seconds |
|
1288
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.08326 seconds |
|