blacklight-spotlight 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/concerns/spotlight/solr_document.rb +11 -1
- data/app/models/spotlight/blacklight_configuration.rb +1 -1
- data/app/views/spotlight/roles/_edit_fields.html.erb +1 -1
- data/config/locales/spotlight.en.yml +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/examples.txt +1165 -1148
- data/spec/features/javascript/search_config_admin_spec.rb +1 -0
- data/spec/models/spotlight/blacklight_configuration_spec.rb +8 -0
- data/spec/services/spotlight/solr_document_builder_spec.rb +5 -0
- data/spec/test_app_templates/catalog_controller.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a374f34b756e77a92a47c12e13ab91bf2a935249
|
4
|
+
data.tar.gz: 0764167fe263eb2ca0d7e95f804898541695ca94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e0ca388157dcfd5a7b33f20766098792fb57d9041dc623e973d08fe3ecf89553b24e906fd4fbf99a4982c6ea819538667ac6dfef52a7e843e2b47ba12ec58a6
|
7
|
+
data.tar.gz: 9774063881b9e5a43eb37829235aa65246ee2760d7250c00c34ded8f2e262a0e43a07cd5fae15e5ba9f9fec8347c41f79e87db9ada603d7231aff76824d13dc2
|
@@ -84,7 +84,9 @@ module Spotlight
|
|
84
84
|
end
|
85
85
|
|
86
86
|
def to_solr
|
87
|
-
{ self.class.unique_key.to_sym => id }.reverse_merge(sidecars.inject({}) { |acc, elem| acc.merge(elem.to_solr) })
|
87
|
+
{ self.class.unique_key.to_sym => id }.reverse_merge(sidecars.inject({}) { |acc, elem| acc.merge(elem.to_solr) })
|
88
|
+
.merge(tags_to_solr)
|
89
|
+
.merge(exhibits_to_solr)
|
88
90
|
end
|
89
91
|
|
90
92
|
def make_public!(exhibit)
|
@@ -128,6 +130,14 @@ module Spotlight
|
|
128
130
|
end
|
129
131
|
h
|
130
132
|
end
|
133
|
+
|
134
|
+
def exhibits_to_solr
|
135
|
+
slugs = sidecars.map(&:exhibit).map(&:slug)
|
136
|
+
|
137
|
+
{
|
138
|
+
"#{Spotlight::Engine.config.solr_fields.prefix}spotlight_exhibit_slugs#{Spotlight::Engine.config.solr_fields.string_suffix}" => slugs
|
139
|
+
}
|
140
|
+
end
|
131
141
|
end
|
132
142
|
end
|
133
143
|
|
@@ -319,7 +319,7 @@ module Spotlight
|
|
319
319
|
return unless index_fields.blank?
|
320
320
|
|
321
321
|
views = default_blacklight_config.view.keys | [:show, :enabled]
|
322
|
-
field.merge!
|
322
|
+
field.merge!((views - field.keys).map { |v| [v, !title_only_by_default?(v)] }.to_h)
|
323
323
|
end
|
324
324
|
|
325
325
|
# Check to see whether config.view.foobar.title_only_by_default is available
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<tr data-edit-for="<%= f.object.new_record? ? 'new' : f.object.id %>">
|
2
2
|
<td>
|
3
|
-
<%= f.email_field :user_key, hide_label: true, disabled: f.object.persisted? %>
|
3
|
+
<%= f.email_field :user_key, hide_label: true, disabled: f.object.persisted?, help: (t('.help') if f.object.new_record?) %>
|
4
4
|
</td>
|
5
5
|
<td><%= f.select :role, roles_for_select, hide_label: true %></td>
|
6
6
|
<td></td>
|
data/lib/spotlight/version.rb
CHANGED
data/spec/examples.txt
CHANGED
@@ -1,1150 +1,1167 @@
|
|
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:2:1:1:1] | passed | 0.
|
8
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
9
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
10
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.
|
11
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.
|
12
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.
|
13
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.
|
14
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.
|
15
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.
|
16
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.
|
17
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.
|
18
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.
|
19
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.
|
20
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.
|
21
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.
|
22
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.
|
23
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.
|
24
|
-
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.
|
25
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.
|
26
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.
|
27
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1:1] | passed | 0.
|
28
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.
|
29
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:1] | passed | 0.
|
30
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:2] | passed | 0.
|
31
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:3] | passed | 0.
|
32
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:4] | passed | 0.
|
33
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.
|
34
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.
|
35
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.
|
36
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.
|
37
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.
|
38
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] |
|
39
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] |
|
40
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] |
|
41
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] |
|
42
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.
|
43
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.
|
44
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.
|
45
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] |
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] |
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | failed | 0.
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] |
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] |
|
58
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] |
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] |
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] |
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] |
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] |
|
63
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] |
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] |
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.
|
74
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.
|
75
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.
|
76
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.
|
77
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.
|
78
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.
|
79
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.
|
80
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.
|
81
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.
|
82
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.
|
83
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.
|
84
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.
|
85
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.
|
86
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
87
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
88
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.
|
89
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.
|
90
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.
|
91
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.
|
92
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.
|
93
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.
|
94
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.
|
95
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.
|
96
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.
|
97
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.
|
98
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.
|
99
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.
|
100
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.
|
101
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.
|
102
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.
|
103
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.
|
104
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.
|
105
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.
|
106
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.
|
107
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.
|
108
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.
|
109
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.
|
110
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.
|
111
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.
|
112
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.
|
113
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.
|
114
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.
|
115
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.
|
116
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.
|
117
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.
|
118
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.
|
119
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.
|
120
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.
|
121
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.
|
122
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.
|
123
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.
|
127
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
128
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:1:1] | passed | 0.
|
129
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:2:1] | passed | 0.
|
130
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:3:1] | passed | 0.
|
131
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:4:1] | passed | 0.
|
132
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:1] | passed | 0.
|
133
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:2] | passed | 0.
|
134
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:3] | passed | 0.
|
135
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:1] | passed | 0.
|
136
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:2] | passed | 0.
|
137
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:1] | passed | 0.
|
138
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:2] | passed | 0.
|
139
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:3] | passed | 0.
|
140
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:1] | passed | 0.
|
141
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:2] | passed | 0.
|
142
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:7:1] | passed | 0.
|
143
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:1] | passed | 0.
|
144
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:2] | passed | 0.
|
145
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.
|
146
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.
|
147
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.
|
148
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.
|
149
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.
|
150
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.
|
151
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.
|
152
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.
|
153
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.
|
154
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.
|
155
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.
|
156
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.
|
157
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.
|
158
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.
|
159
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.
|
160
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.
|
161
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.
|
162
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:2] | passed | 0.
|
163
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:3] | passed | 0.
|
164
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
165
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.
|
166
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
167
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.
|
168
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.
|
169
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.
|
170
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.
|
171
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.
|
172
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.
|
173
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.
|
174
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.
|
175
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.
|
176
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.
|
177
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.
|
178
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.
|
179
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.
|
180
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.
|
181
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.
|
182
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.
|
183
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.
|
184
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.
|
185
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.
|
186
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.
|
187
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.
|
188
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.
|
189
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.
|
190
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.
|
191
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.
|
192
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.
|
193
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.
|
194
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.
|
195
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.
|
196
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
197
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
198
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.
|
199
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.
|
200
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.
|
201
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.
|
202
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.
|
203
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.
|
204
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.
|
205
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.
|
206
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.
|
207
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.
|
208
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.
|
209
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.
|
210
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.
|
211
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] |
|
212
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.
|
213
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.
|
214
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.
|
215
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.
|
216
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.
|
217
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.
|
218
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.
|
219
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.
|
220
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.
|
221
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.
|
222
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.
|
223
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.
|
224
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
225
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.
|
226
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.
|
227
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.
|
228
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.
|
229
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.
|
230
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.
|
231
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.
|
232
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.
|
233
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.
|
234
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.
|
235
|
-
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
236
|
-
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
237
|
-
./spec/features/about_page_spec.rb[1:1:1] | passed | 0.
|
238
|
-
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.
|
239
|
-
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.
|
240
|
-
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.
|
241
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:1] |
|
242
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] |
|
243
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:3] |
|
244
|
-
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.
|
245
|
-
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.
|
246
|
-
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.
|
247
|
-
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.
|
248
|
-
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.
|
249
|
-
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.
|
250
|
-
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.
|
251
|
-
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.
|
252
|
-
./spec/features/add_items_spec.rb[1:2:1] | failed | 0.
|
253
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] |
|
254
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] |
|
255
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] |
|
256
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] |
|
257
|
-
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.
|
258
|
-
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed |
|
259
|
-
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed |
|
260
|
-
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.
|
261
|
-
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.
|
262
|
-
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.
|
263
|
-
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.
|
264
|
-
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.
|
265
|
-
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.
|
266
|
-
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.
|
267
|
-
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.
|
268
|
-
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.
|
269
|
-
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.
|
270
|
-
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.
|
271
|
-
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.
|
272
|
-
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.
|
273
|
-
./spec/features/browse_category_spec.rb[1:1:5] | passed | 0.
|
274
|
-
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.
|
275
|
-
./spec/features/catalog_spec.rb[1:2] | passed | 0.
|
276
|
-
./spec/features/catalog_spec.rb[1:3:1] |
|
277
|
-
./spec/features/catalog_spec.rb[1:4:1] |
|
278
|
-
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.
|
279
|
-
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.
|
280
|
-
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.
|
281
|
-
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.
|
282
|
-
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.
|
283
|
-
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.
|
284
|
-
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.
|
285
|
-
./spec/features/dashboard_spec.rb[1:1] | passed | 0.
|
286
|
-
./spec/features/dashboard_spec.rb[1:2] |
|
287
|
-
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.
|
288
|
-
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.
|
289
|
-
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.
|
290
|
-
./spec/features/edit_search_fields_spec.rb[1:1:3:1] |
|
291
|
-
./spec/features/edit_search_fields_spec.rb[1:1:3:2] |
|
292
|
-
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.
|
293
|
-
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.
|
294
|
-
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.
|
295
|
-
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.
|
296
|
-
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.
|
297
|
-
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.
|
298
|
-
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.
|
299
|
-
./spec/features/exhibits/add_tags_spec.rb[1:1] |
|
300
|
-
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.
|
301
|
-
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.
|
302
|
-
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.
|
303
|
-
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.
|
304
|
-
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed |
|
305
|
-
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed |
|
306
|
-
./spec/features/exhibits/administration_spec.rb[1:1:7] |
|
307
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.
|
308
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.
|
309
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.
|
310
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.
|
311
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 1.
|
312
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.
|
313
|
-
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.
|
314
|
-
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.
|
315
|
-
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.
|
316
|
-
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.
|
317
|
-
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.
|
318
|
-
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.
|
319
|
-
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.
|
320
|
-
./spec/features/feature_page_spec.rb[1:3:1:1] | passed |
|
321
|
-
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.
|
322
|
-
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.
|
323
|
-
./spec/features/feature_page_spec.rb[1:4:2] | passed |
|
324
|
-
./spec/features/home_page_spec.rb[1:1] | passed | 0.
|
325
|
-
./spec/features/home_page_spec.rb[1:2] | passed |
|
326
|
-
./spec/features/home_page_spec.rb[1:3] |
|
327
|
-
./spec/features/home_page_spec.rb[1:4] | passed | 0.
|
328
|
-
./spec/features/home_page_spec.rb[1:5] | passed | 0.
|
329
|
-
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 0.
|
330
|
-
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.
|
331
|
-
./spec/features/import_exhibit_spec.rb[1:1] | pending |
|
332
|
-
./spec/features/import_exhibit_spec.rb[1:2] | passed |
|
333
|
-
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.
|
334
|
-
./spec/features/item_admin_spec.rb[1:1:2] |
|
335
|
-
./spec/features/item_admin_spec.rb[1:1:3] |
|
336
|
-
./spec/features/item_admin_spec.rb[1:1:4] |
|
337
|
-
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed |
|
338
|
-
./spec/features/javascript/block_controls_spec.rb[1:1] | passed |
|
339
|
-
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending |
|
340
|
-
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 11.
|
341
|
-
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending |
|
342
|
-
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending |
|
343
|
-
./spec/features/javascript/blocks/
|
344
|
-
./spec/features/javascript/blocks/
|
345
|
-
./spec/features/javascript/blocks/
|
346
|
-
./spec/features/javascript/blocks/
|
347
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
348
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
349
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
350
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
351
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
352
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
353
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:
|
354
|
-
./spec/features/javascript/blocks/
|
355
|
-
./spec/features/javascript/blocks/
|
356
|
-
./spec/features/javascript/
|
357
|
-
./spec/features/javascript/
|
358
|
-
./spec/features/javascript/
|
359
|
-
./spec/features/javascript/
|
360
|
-
./spec/features/javascript/
|
361
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:
|
362
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:
|
363
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:
|
364
|
-
./spec/features/javascript/
|
365
|
-
./spec/features/javascript/
|
366
|
-
./spec/features/javascript/
|
367
|
-
./spec/features/javascript/
|
368
|
-
./spec/features/javascript/
|
369
|
-
./spec/features/javascript/
|
370
|
-
./spec/features/javascript/
|
371
|
-
./spec/features/javascript/
|
372
|
-
./spec/features/javascript/
|
373
|
-
./spec/features/javascript/
|
374
|
-
./spec/features/javascript/
|
375
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
376
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
377
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
378
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:
|
379
|
-
./spec/features/javascript/
|
380
|
-
./spec/features/javascript/
|
381
|
-
./spec/features/javascript/search_context_spec.rb[1:
|
382
|
-
./spec/features/
|
383
|
-
./spec/features/
|
384
|
-
./spec/features/main_navigation_spec.rb[1:
|
385
|
-
./spec/features/main_navigation_spec.rb[1:
|
386
|
-
./spec/features/main_navigation_spec.rb[1:
|
387
|
-
./spec/features/main_navigation_spec.rb[1:
|
388
|
-
./spec/features/
|
389
|
-
./spec/features/
|
390
|
-
./spec/features/
|
391
|
-
./spec/features/report_a_problem_spec.rb[1:
|
392
|
-
./spec/features/report_a_problem_spec.rb[1:2:
|
393
|
-
./spec/features/
|
394
|
-
./spec/features/
|
395
|
-
./spec/features/site_admin_management_spec.rb[1:
|
396
|
-
./spec/features/site_admin_management_spec.rb[1:
|
397
|
-
./spec/features/site_admin_management_spec.rb[1:
|
398
|
-
./spec/features/site_admin_management_spec.rb[1:
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/
|
401
|
-
./spec/features/
|
402
|
-
./spec/features/site_masthead_spec.rb[1:
|
403
|
-
./spec/features/
|
404
|
-
./spec/features/
|
405
|
-
./spec/features/
|
406
|
-
./spec/features/
|
407
|
-
./spec/features/
|
408
|
-
./spec/
|
409
|
-
./spec/
|
410
|
-
./spec/
|
411
|
-
./spec/
|
412
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
413
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
414
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
415
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
416
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
417
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
418
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
419
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
420
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
421
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
422
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
423
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:
|
424
|
-
./spec/helpers/spotlight/
|
425
|
-
./spec/helpers/spotlight/
|
426
|
-
./spec/helpers/spotlight/
|
427
|
-
./spec/helpers/spotlight/
|
428
|
-
./spec/helpers/spotlight/
|
429
|
-
./spec/helpers/spotlight/
|
430
|
-
./spec/helpers/spotlight/
|
431
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
432
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
433
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
434
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
435
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
436
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
437
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
438
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
439
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
440
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
441
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
442
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
443
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
444
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:
|
445
|
-
./spec/helpers/spotlight/
|
446
|
-
./spec/helpers/spotlight/
|
447
|
-
./spec/helpers/spotlight/
|
448
|
-
./spec/helpers/spotlight/
|
449
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:
|
450
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1]
|
451
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:
|
452
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:
|
453
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:
|
454
|
-
./spec/helpers/spotlight/
|
455
|
-
./spec/helpers/spotlight/
|
456
|
-
./spec/helpers/spotlight/
|
457
|
-
./spec/helpers/spotlight/
|
458
|
-
./spec/helpers/spotlight/
|
459
|
-
./spec/helpers/spotlight/
|
460
|
-
./spec/helpers/spotlight/
|
461
|
-
./spec/helpers/spotlight/
|
462
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
463
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
464
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
465
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
466
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
467
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
468
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
469
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:
|
470
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2
|
471
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
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/
|
479
|
-
./spec/helpers/spotlight/
|
480
|
-
./spec/helpers/spotlight/title_helper_spec.rb[1:
|
481
|
-
./spec/helpers/spotlight/title_helper_spec.rb[1:
|
482
|
-
./spec/
|
483
|
-
./spec/
|
484
|
-
./spec/
|
485
|
-
./spec/
|
486
|
-
./spec/jobs/spotlight/
|
487
|
-
./spec/jobs/spotlight/
|
488
|
-
./spec/jobs/spotlight/
|
489
|
-
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:
|
490
|
-
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:
|
491
|
-
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:
|
492
|
-
./spec/jobs/spotlight/
|
493
|
-
./spec/jobs/spotlight/
|
494
|
-
./spec/
|
495
|
-
./spec/
|
496
|
-
./spec/
|
497
|
-
./spec/
|
498
|
-
./spec/lib/migration/iiif_spec.rb[1:1:
|
499
|
-
./spec/lib/migration/iiif_spec.rb[1:
|
500
|
-
./spec/lib/migration/iiif_spec.rb[1:
|
501
|
-
./spec/lib/
|
502
|
-
./spec/lib/
|
503
|
-
./spec/lib/
|
504
|
-
./spec/lib/
|
505
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
506
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
507
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
508
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
509
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
510
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
511
|
-
./spec/lib/spotlight/controller_spec.rb[1:
|
512
|
-
./spec/
|
513
|
-
./spec/
|
514
|
-
./spec/
|
515
|
-
./spec/
|
516
|
-
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:
|
517
|
-
./spec/
|
518
|
-
./spec/
|
519
|
-
./spec/
|
520
|
-
./spec/
|
521
|
-
./spec/models/sir_trevor_rails/blocks/
|
522
|
-
./spec/models/sir_trevor_rails/blocks/
|
523
|
-
./spec/models/sir_trevor_rails/blocks/
|
524
|
-
./spec/models/sir_trevor_rails/blocks/
|
525
|
-
./spec/models/sir_trevor_rails/blocks/
|
526
|
-
./spec/models/sir_trevor_rails/blocks/
|
527
|
-
./spec/models/sir_trevor_rails/blocks/
|
528
|
-
./spec/models/sir_trevor_rails/blocks/
|
529
|
-
./spec/models/sir_trevor_rails/blocks/
|
530
|
-
./spec/models/sir_trevor_rails/blocks/
|
531
|
-
./spec/models/sir_trevor_rails/blocks/
|
532
|
-
./spec/models/
|
533
|
-
./spec/models/
|
534
|
-
./spec/models/
|
535
|
-
./spec/models/
|
536
|
-
./spec/models/
|
537
|
-
./spec/models/solr_document_spec.rb[1:
|
538
|
-
./spec/models/solr_document_spec.rb[1:
|
539
|
-
./spec/models/solr_document_spec.rb[1:
|
540
|
-
./spec/models/solr_document_spec.rb[1:
|
541
|
-
./spec/models/solr_document_spec.rb[1:
|
542
|
-
./spec/models/solr_document_spec.rb[1:
|
543
|
-
./spec/models/solr_document_spec.rb[1:
|
544
|
-
./spec/models/solr_document_spec.rb[1:
|
545
|
-
./spec/models/solr_document_spec.rb[1:
|
546
|
-
./spec/models/solr_document_spec.rb[1:
|
547
|
-
./spec/models/solr_document_spec.rb[1:
|
548
|
-
./spec/models/solr_document_spec.rb[1:
|
549
|
-
./spec/models/solr_document_spec.rb[1:
|
550
|
-
./spec/models/solr_document_spec.rb[1:
|
551
|
-
./spec/models/solr_document_spec.rb[1:
|
552
|
-
./spec/models/solr_document_spec.rb[1:
|
553
|
-
./spec/models/solr_document_spec.rb[1:
|
554
|
-
./spec/models/solr_document_spec.rb[1:
|
555
|
-
./spec/models/solr_document_spec.rb[1:
|
556
|
-
./spec/models/solr_document_spec.rb[1:
|
557
|
-
./spec/models/solr_document_spec.rb[1:
|
558
|
-
./spec/models/solr_document_spec.rb[1:
|
559
|
-
./spec/models/solr_document_spec.rb[1:
|
560
|
-
./spec/models/solr_document_spec.rb[1:
|
561
|
-
./spec/models/
|
562
|
-
./spec/models/
|
563
|
-
./spec/models/
|
564
|
-
./spec/models/
|
565
|
-
./spec/models/
|
566
|
-
./spec/models/spotlight/ability_spec.rb[1:1:
|
567
|
-
./spec/models/spotlight/ability_spec.rb[1:1:
|
568
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
569
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
570
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
571
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
572
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
573
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
574
|
-
./spec/models/spotlight/ability_spec.rb[1:3:
|
575
|
-
./spec/models/spotlight/ability_spec.rb[1:3:
|
576
|
-
./spec/models/spotlight/ability_spec.rb[1:3:
|
577
|
-
./spec/models/spotlight/ability_spec.rb[1:3:
|
578
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
579
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
580
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
581
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
582
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
583
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
584
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
585
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
586
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
587
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
588
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
589
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
590
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
591
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
592
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
593
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
594
|
-
./spec/models/spotlight/
|
595
|
-
./spec/models/spotlight/
|
596
|
-
./spec/models/spotlight/
|
597
|
-
./spec/models/spotlight/
|
598
|
-
./spec/models/spotlight/
|
599
|
-
./spec/models/spotlight/
|
600
|
-
./spec/models/spotlight/
|
601
|
-
./spec/models/spotlight/
|
602
|
-
./spec/models/spotlight/
|
603
|
-
./spec/models/spotlight/
|
604
|
-
./spec/models/spotlight/
|
605
|
-
./spec/models/spotlight/
|
606
|
-
./spec/models/spotlight/
|
607
|
-
./spec/models/spotlight/
|
608
|
-
./spec/models/spotlight/
|
609
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
610
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
611
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3
|
612
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
613
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
614
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3
|
615
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
616
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
617
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
618
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
619
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
620
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:
|
621
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
622
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
623
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
624
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4
|
625
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
626
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
627
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
628
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
629
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
630
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
631
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
632
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
633
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
634
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
635
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
636
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
637
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
638
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
639
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
640
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:
|
641
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
642
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
643
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
644
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
645
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
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:8:
|
649
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:
|
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:
|
653
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:
|
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:
|
664
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
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/
|
671
|
-
./spec/models/spotlight/
|
672
|
-
./spec/models/spotlight/
|
673
|
-
./spec/models/spotlight/
|
674
|
-
./spec/models/spotlight/
|
675
|
-
./spec/models/spotlight/
|
676
|
-
./spec/models/spotlight/
|
677
|
-
./spec/models/spotlight/
|
678
|
-
./spec/models/spotlight/
|
679
|
-
./spec/models/spotlight/
|
680
|
-
./spec/models/spotlight/
|
681
|
-
./spec/models/spotlight/
|
682
|
-
./spec/models/spotlight/contact_form_spec.rb[1:
|
683
|
-
./spec/models/spotlight/
|
684
|
-
./spec/models/spotlight/
|
685
|
-
./spec/models/spotlight/
|
686
|
-
./spec/models/spotlight/
|
687
|
-
./spec/models/spotlight/
|
688
|
-
./spec/models/spotlight/
|
689
|
-
./spec/models/spotlight/
|
690
|
-
./spec/models/spotlight/
|
691
|
-
./spec/models/spotlight/
|
692
|
-
./spec/models/spotlight/
|
693
|
-
./spec/models/spotlight/
|
694
|
-
./spec/models/spotlight/
|
695
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
696
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
697
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
698
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
699
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
700
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
701
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
702
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
703
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
704
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
705
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
706
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
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/exhibit_spec.rb[1:
|
715
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
716
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
717
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
718
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
719
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
720
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
721
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
722
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
723
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
724
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
725
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
726
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
727
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
728
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
729
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
730
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
731
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
732
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
733
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
734
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
735
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
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/feature_page_spec.rb[1:
|
746
|
-
./spec/models/spotlight/feature_page_spec.rb[1:
|
747
|
-
./spec/models/spotlight/feature_page_spec.rb[1:
|
748
|
-
./spec/models/spotlight/feature_page_spec.rb[1:
|
749
|
-
./spec/models/spotlight/feature_page_spec.rb[1:
|
750
|
-
./spec/models/spotlight/
|
751
|
-
./spec/models/spotlight/
|
752
|
-
./spec/models/spotlight/
|
753
|
-
./spec/models/spotlight/
|
754
|
-
./spec/models/spotlight/
|
755
|
-
./spec/models/spotlight/
|
756
|
-
./spec/models/spotlight/
|
757
|
-
./spec/models/spotlight/
|
758
|
-
./spec/models/spotlight/featured_image_spec.rb[1:
|
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/page_spec.rb[1:
|
788
|
-
./spec/models/spotlight/page_spec.rb[1:
|
789
|
-
./spec/models/spotlight/page_spec.rb[1:
|
790
|
-
./spec/models/spotlight/page_spec.rb[1:
|
791
|
-
./spec/models/spotlight/page_spec.rb[1:
|
792
|
-
./spec/models/spotlight/page_spec.rb[1:
|
793
|
-
./spec/models/spotlight/page_spec.rb[1:
|
794
|
-
./spec/models/spotlight/page_spec.rb[1:
|
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/reindex_progress_spec.rb[1:
|
805
|
-
./spec/models/spotlight/reindex_progress_spec.rb[1:
|
806
|
-
./spec/models/spotlight/reindex_progress_spec.rb[1:
|
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/reindexing_log_entry_spec.rb[1:
|
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/resource_spec.rb[1:
|
827
|
-
./spec/models/spotlight/resource_spec.rb[1:
|
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/resources/
|
838
|
-
./spec/models/spotlight/resources/
|
839
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
840
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
841
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
842
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
843
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
844
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
845
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
846
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
847
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:
|
848
|
-
./spec/models/spotlight/resources/
|
849
|
-
./spec/models/spotlight/resources/
|
850
|
-
./spec/models/spotlight/resources/
|
851
|
-
./spec/models/spotlight/resources/
|
852
|
-
./spec/models/spotlight/resources/
|
853
|
-
./spec/models/spotlight/resources/
|
854
|
-
./spec/models/spotlight/resources/
|
855
|
-
./spec/models/spotlight/resources/
|
856
|
-
./spec/models/spotlight/resources/
|
857
|
-
./spec/models/spotlight/resources/
|
858
|
-
./spec/models/spotlight/resources/
|
859
|
-
./spec/models/spotlight/resources/
|
860
|
-
./spec/models/spotlight/resources/
|
861
|
-
./spec/models/spotlight/resources/
|
862
|
-
./spec/models/spotlight/resources/
|
863
|
-
./spec/models/spotlight/resources/
|
864
|
-
./spec/models/spotlight/resources/
|
865
|
-
./spec/models/spotlight/resources/
|
866
|
-
./spec/models/spotlight/resources/
|
867
|
-
./spec/models/spotlight/resources/upload_spec.rb[1:
|
868
|
-
./spec/models/spotlight/resources/
|
869
|
-
./spec/models/spotlight/resources/
|
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/search_spec.rb[1:
|
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/
|
907
|
-
./spec/
|
908
|
-
./spec/
|
909
|
-
./spec/
|
910
|
-
./spec/
|
911
|
-
./spec/
|
912
|
-
./spec/
|
913
|
-
./spec/
|
914
|
-
./spec/
|
915
|
-
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:
|
916
|
-
./spec/
|
917
|
-
./spec/
|
918
|
-
./spec/
|
919
|
-
./spec/
|
920
|
-
./spec/
|
921
|
-
./spec/
|
922
|
-
./spec/
|
923
|
-
./spec/
|
924
|
-
./spec/
|
925
|
-
./spec/routing/spotlight/
|
926
|
-
./spec/routing/spotlight/
|
927
|
-
./spec/routing/spotlight/
|
928
|
-
./spec/routing/spotlight/
|
929
|
-
./spec/
|
930
|
-
./spec/
|
931
|
-
./spec/
|
932
|
-
./spec/
|
933
|
-
./spec/
|
934
|
-
./spec/
|
935
|
-
./spec/
|
936
|
-
./spec/
|
937
|
-
./spec/
|
938
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
939
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
940
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
941
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
942
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
943
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
944
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
945
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
946
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
947
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
948
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
949
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
950
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
951
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
952
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
953
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
954
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
955
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
956
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
957
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
958
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
959
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
960
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
961
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
962
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
963
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
964
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
965
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
966
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
967
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:
|
968
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2
|
969
|
-
./spec/
|
970
|
-
./spec/
|
971
|
-
./spec/
|
972
|
-
./spec/
|
973
|
-
./spec/
|
974
|
-
./spec/
|
975
|
-
./spec/
|
976
|
-
./spec/
|
977
|
-
./spec/
|
978
|
-
./spec/services/spotlight/
|
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/views/
|
1002
|
-
./spec/views/
|
1003
|
-
./spec/views/
|
1004
|
-
./spec/views/
|
1005
|
-
./spec/views/
|
1006
|
-
./spec/views/
|
1007
|
-
./spec/views/shared/
|
1008
|
-
./spec/views/shared/
|
1009
|
-
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:
|
1010
|
-
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:
|
1011
|
-
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:
|
1012
|
-
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:
|
1013
|
-
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:
|
1014
|
-
./spec/views/shared/
|
1015
|
-
./spec/views/shared/
|
1016
|
-
./spec/views/shared/
|
1017
|
-
./spec/views/shared/
|
1018
|
-
./spec/views/shared/
|
1019
|
-
./spec/views/shared/
|
1020
|
-
./spec/views/shared/
|
1021
|
-
./spec/views/shared/
|
1022
|
-
./spec/views/shared/
|
1023
|
-
./spec/views/
|
1024
|
-
./spec/views/
|
1025
|
-
./spec/views/
|
1026
|
-
./spec/views/
|
1027
|
-
./spec/views/
|
1028
|
-
./spec/views/
|
1029
|
-
./spec/views/
|
1030
|
-
./spec/views/
|
1031
|
-
./spec/views/
|
1032
|
-
./spec/views/
|
1033
|
-
./spec/views/
|
1034
|
-
./spec/views/
|
1035
|
-
./spec/views/
|
1036
|
-
./spec/views/spotlight/
|
1037
|
-
./spec/views/spotlight/
|
1038
|
-
./spec/views/spotlight/
|
1039
|
-
./spec/views/spotlight/
|
1040
|
-
./spec/views/spotlight/
|
1041
|
-
./spec/views/spotlight/
|
1042
|
-
./spec/views/spotlight/
|
1043
|
-
./spec/views/spotlight/browse/
|
1044
|
-
./spec/views/spotlight/
|
1045
|
-
./spec/views/spotlight/
|
1046
|
-
./spec/views/spotlight/
|
1047
|
-
./spec/views/spotlight/
|
1048
|
-
./spec/views/spotlight/
|
1049
|
-
./spec/views/spotlight/
|
1050
|
-
./spec/views/spotlight/
|
1051
|
-
./spec/views/spotlight/
|
1052
|
-
./spec/views/spotlight/
|
1053
|
-
./spec/views/spotlight/
|
1054
|
-
./spec/views/spotlight/
|
1055
|
-
./spec/views/spotlight/
|
1056
|
-
./spec/views/spotlight/
|
1057
|
-
./spec/views/spotlight/
|
1058
|
-
./spec/views/spotlight/
|
1059
|
-
./spec/views/spotlight/
|
1060
|
-
./spec/views/spotlight/
|
1061
|
-
./spec/views/spotlight/
|
1062
|
-
./spec/views/spotlight/
|
1063
|
-
./spec/views/spotlight/
|
1064
|
-
./spec/views/spotlight/
|
1065
|
-
./spec/views/spotlight/dashboards/
|
1066
|
-
./spec/views/spotlight/dashboards/
|
1067
|
-
./spec/views/spotlight/dashboards/
|
1068
|
-
./spec/views/spotlight/dashboards/
|
1069
|
-
./spec/views/spotlight/dashboards/
|
1070
|
-
./spec/views/spotlight/
|
1071
|
-
./spec/views/spotlight/
|
1072
|
-
./spec/views/spotlight/
|
1073
|
-
./spec/views/spotlight/
|
1074
|
-
./spec/views/spotlight/
|
1075
|
-
./spec/views/spotlight/
|
1076
|
-
./spec/views/spotlight/
|
1077
|
-
./spec/views/spotlight/
|
1078
|
-
./spec/views/spotlight/
|
1079
|
-
./spec/views/spotlight/
|
1080
|
-
./spec/views/spotlight/
|
1081
|
-
./spec/views/spotlight/
|
1082
|
-
./spec/views/spotlight/
|
1083
|
-
./spec/views/spotlight/exhibits/
|
1084
|
-
./spec/views/spotlight/exhibits/
|
1085
|
-
./spec/views/spotlight/exhibits/
|
1086
|
-
./spec/views/spotlight/
|
1087
|
-
./spec/views/spotlight/
|
1088
|
-
./spec/views/spotlight/
|
1089
|
-
./spec/views/spotlight/
|
1090
|
-
./spec/views/spotlight/
|
1091
|
-
./spec/views/spotlight/
|
1092
|
-
./spec/views/spotlight/
|
1093
|
-
./spec/views/spotlight/
|
1094
|
-
./spec/views/spotlight/
|
1095
|
-
./spec/views/spotlight/
|
1096
|
-
./spec/views/spotlight/
|
1097
|
-
./spec/views/spotlight/
|
1098
|
-
./spec/views/spotlight/
|
1099
|
-
./spec/views/spotlight/
|
1100
|
-
./spec/views/spotlight/
|
1101
|
-
./spec/views/spotlight/
|
1102
|
-
./spec/views/spotlight/
|
1103
|
-
./spec/views/spotlight/
|
1104
|
-
./spec/views/spotlight/
|
1105
|
-
./spec/views/spotlight/
|
1106
|
-
./spec/views/spotlight/
|
1107
|
-
./spec/views/spotlight/
|
1108
|
-
./spec/views/spotlight/
|
1109
|
-
./spec/views/spotlight/
|
1110
|
-
./spec/views/spotlight/pages/
|
1111
|
-
./spec/views/spotlight/pages/
|
1112
|
-
./spec/views/spotlight/pages/
|
1113
|
-
./spec/views/spotlight/pages/
|
1114
|
-
./spec/views/spotlight/pages/
|
1115
|
-
./spec/views/spotlight/pages/
|
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/search_configurations/
|
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/
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.01164 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.0954 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.06888 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.09122 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.11244 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.15093 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.12952 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.15836 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.11929 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.12735 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.14196 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.19158 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.1195 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.11824 seconds |
|
17
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.02365 seconds |
|
18
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.04642 seconds |
|
19
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.03403 seconds |
|
20
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.07625 seconds |
|
21
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.07004 seconds |
|
22
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.09596 seconds |
|
23
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.09579 seconds |
|
24
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.0755 seconds |
|
25
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.0689 seconds |
|
26
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.08355 seconds |
|
27
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1:1] | passed | 0.12244 seconds |
|
28
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.12212 seconds |
|
29
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:1] | passed | 0.11488 seconds |
|
30
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:2] | passed | 0.11066 seconds |
|
31
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:3] | passed | 0.14179 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:4] | passed | 0.27117 seconds |
|
33
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01166 seconds |
|
34
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.01158 seconds |
|
35
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.01293 seconds |
|
36
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.08895 seconds |
|
37
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.07791 seconds |
|
38
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | failed | 0.13462 seconds |
|
39
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | failed | 0.1575 seconds |
|
40
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | failed | 0.13036 seconds |
|
41
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | failed | 0.17768 seconds |
|
42
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.08532 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.09051 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.13819 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.10757 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | failed | 0.08777 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | failed | 0.09447 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | failed | 0.10641 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.08332 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.07466 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.07913 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | failed | 0.1141 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.07895 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.08234 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.11049 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.09271 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | failed | 0.16038 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | failed | 0.20469 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | failed | 0.11095 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | failed | 0.11042 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | failed | 0.105 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | failed | 0.09877 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | failed | 0.19253 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.07098 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.06826 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.12837 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | failed | 0.1003 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.09055 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.12387 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.12227 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01149 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01278 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.06857 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.07321 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.06959 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.00969 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.01233 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01241 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.0677 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.08119 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.07563 seconds |
|
82
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.00993 seconds |
|
83
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.04944 seconds |
|
84
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.63774 seconds |
|
85
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.07477 seconds |
|
86
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.10722 seconds |
|
87
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.09676 seconds |
|
88
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.09036 seconds |
|
89
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.09372 seconds |
|
90
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.18907 seconds |
|
91
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.10525 seconds |
|
92
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.11894 seconds |
|
93
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.2497 seconds |
|
94
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.14962 seconds |
|
95
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.108 seconds |
|
96
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.12206 seconds |
|
97
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.11773 seconds |
|
98
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.09563 seconds |
|
99
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.09496 seconds |
|
100
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.12273 seconds |
|
101
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.14366 seconds |
|
102
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.12258 seconds |
|
103
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.09695 seconds |
|
104
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.08537 seconds |
|
105
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.08564 seconds |
|
106
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.07426 seconds |
|
107
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.13017 seconds |
|
108
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.09949 seconds |
|
109
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.08345 seconds |
|
110
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.08131 seconds |
|
111
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.08008 seconds |
|
112
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.08274 seconds |
|
113
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.04584 seconds |
|
114
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.06835 seconds |
|
115
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.06647 seconds |
|
116
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.06878 seconds |
|
117
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.06344 seconds |
|
118
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.06627 seconds |
|
119
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.04265 seconds |
|
120
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.09869 seconds |
|
121
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.0812 seconds |
|
122
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.09563 seconds |
|
123
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.09933 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.10547 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.10638 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.10217 seconds |
|
127
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.14908 seconds |
|
128
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:1:1] | passed | 0.11864 seconds |
|
129
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:2:1] | passed | 0.14899 seconds |
|
130
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:3:1] | passed | 0.10157 seconds |
|
131
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:4:1] | passed | 0.154 seconds |
|
132
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:1] | passed | 0.11238 seconds |
|
133
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:2] | passed | 0.11204 seconds |
|
134
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:3] | passed | 0.11277 seconds |
|
135
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:1] | passed | 0.10173 seconds |
|
136
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:2] | passed | 0.15273 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:1] | passed | 0.11443 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:2] | passed | 0.15306 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:3] | passed | 0.13221 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:1] | passed | 0.11196 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:2] | passed | 0.11451 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:7:1] | passed | 0.15342 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:1] | passed | 0.1208 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:2] | passed | 0.11987 seconds |
|
145
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.04646 seconds |
|
146
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.03706 seconds |
|
147
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.04154 seconds |
|
148
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.03934 seconds |
|
149
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.0673 seconds |
|
150
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.09101 seconds |
|
151
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.08292 seconds |
|
152
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.07181 seconds |
|
153
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.08849 seconds |
|
154
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.08706 seconds |
|
155
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.10653 seconds |
|
156
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.1343 seconds |
|
157
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.12631 seconds |
|
158
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.07734 seconds |
|
159
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.0811 seconds |
|
160
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.20344 seconds |
|
161
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.0972 seconds |
|
162
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:2] | passed | 0.19187 seconds |
|
163
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:3] | passed | 0.12321 seconds |
|
164
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.08062 seconds |
|
165
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.07752 seconds |
|
166
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.07512 seconds |
|
167
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06677 seconds |
|
168
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.09347 seconds |
|
169
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.09001 seconds |
|
170
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.09188 seconds |
|
171
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.06535 seconds |
|
172
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.11433 seconds |
|
173
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.08582 seconds |
|
174
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.0794 seconds |
|
175
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.0713 seconds |
|
176
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.10672 seconds |
|
177
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.10524 seconds |
|
178
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.10984 seconds |
|
179
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.07069 seconds |
|
180
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.09495 seconds |
|
181
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.06414 seconds |
|
182
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.06874 seconds |
|
183
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.09454 seconds |
|
184
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.09075 seconds |
|
185
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.08564 seconds |
|
186
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.08427 seconds |
|
187
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.08729 seconds |
|
188
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.08806 seconds |
|
189
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.10448 seconds |
|
190
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.1025 seconds |
|
191
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.0949 seconds |
|
192
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.09607 seconds |
|
193
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.10979 seconds |
|
194
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.09148 seconds |
|
195
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.08173 seconds |
|
196
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.08019 seconds |
|
197
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.07174 seconds |
|
198
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06881 seconds |
|
199
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.12154 seconds |
|
200
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.1359 seconds |
|
201
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.10067 seconds |
|
202
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.09926 seconds |
|
203
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.09842 seconds |
|
204
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.09732 seconds |
|
205
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.08379 seconds |
|
206
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.0711 seconds |
|
207
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.08529 seconds |
|
208
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.13449 seconds |
|
209
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.1297 seconds |
|
210
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.12195 seconds |
|
211
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | failed | 0.13447 seconds |
|
212
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.10999 seconds |
|
213
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.10462 seconds |
|
214
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.09446 seconds |
|
215
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.09306 seconds |
|
216
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.13631 seconds |
|
217
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.02504 seconds |
|
218
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.04457 seconds |
|
219
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.03833 seconds |
|
220
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.14629 seconds |
|
221
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.08754 seconds |
|
222
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.10784 seconds |
|
223
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.11682 seconds |
|
224
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.07898 seconds |
|
225
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.09078 seconds |
|
226
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.09401 seconds |
|
227
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.09495 seconds |
|
228
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.07114 seconds |
|
229
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.09578 seconds |
|
230
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.12634 seconds |
|
231
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.09467 seconds |
|
232
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.0129 seconds |
|
233
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.10592 seconds |
|
234
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.14051 seconds |
|
235
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.07115 seconds |
|
236
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.09302 seconds |
|
237
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 0.16251 seconds |
|
238
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.41018 seconds |
|
239
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.54643 seconds |
|
240
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.12537 seconds |
|
241
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | failed | 0.10812 seconds |
|
242
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | failed | 0.10295 seconds |
|
243
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | failed | 0.09693 seconds |
|
244
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.20046 seconds |
|
245
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.38257 seconds |
|
246
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.31481 seconds |
|
247
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.17933 seconds |
|
248
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.33959 seconds |
|
249
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.13537 seconds |
|
250
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.1504 seconds |
|
251
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.15743 seconds |
|
252
|
+
./spec/features/add_items_spec.rb[1:2:1] | failed | 0.30372 seconds |
|
253
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | failed | 10.61 seconds |
|
254
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | failed | 10.54 seconds |
|
255
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | failed | 10.41 seconds |
|
256
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | failed | 10.5 seconds |
|
257
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.1595 seconds |
|
258
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 0.98991 seconds |
|
259
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.958 seconds |
|
260
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.16321 seconds |
|
261
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.27356 seconds |
|
262
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.26013 seconds |
|
263
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.30772 seconds |
|
264
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.07365 seconds |
|
265
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.1567 seconds |
|
266
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.17678 seconds |
|
267
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.15112 seconds |
|
268
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.16314 seconds |
|
269
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.1699 seconds |
|
270
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.15939 seconds |
|
271
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.15127 seconds |
|
272
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.20257 seconds |
|
273
|
+
./spec/features/browse_category_spec.rb[1:1:5] | passed | 0.1602 seconds |
|
274
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.52505 seconds |
|
275
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.1486 seconds |
|
276
|
+
./spec/features/catalog_spec.rb[1:3:1] | failed | 0.0181 seconds |
|
277
|
+
./spec/features/catalog_spec.rb[1:4:1] | failed | 0.08883 seconds |
|
278
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.23163 seconds |
|
279
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.16376 seconds |
|
280
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.12913 seconds |
|
281
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.2049 seconds |
|
282
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.22663 seconds |
|
283
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.23996 seconds |
|
284
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.26196 seconds |
|
285
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.1479 seconds |
|
286
|
+
./spec/features/dashboard_spec.rb[1:2] | failed | 0.14306 seconds |
|
287
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.36585 seconds |
|
288
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.17002 seconds |
|
289
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.15625 seconds |
|
290
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | failed | 0.17939 seconds |
|
291
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | failed | 0.16437 seconds |
|
292
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.15188 seconds |
|
293
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.26625 seconds |
|
294
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.41653 seconds |
|
295
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.33094 seconds |
|
296
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.29621 seconds |
|
297
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.11686 seconds |
|
298
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.26739 seconds |
|
299
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | failed | 0.09229 seconds |
|
300
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.15278 seconds |
|
301
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.19049 seconds |
|
302
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.33795 seconds |
|
303
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.06 seconds |
|
304
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 1.52 seconds |
|
305
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.82919 seconds |
|
306
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.84913 seconds |
|
307
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.78311 seconds |
|
308
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.40955 seconds |
|
309
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.59501 seconds |
|
310
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.46469 seconds |
|
311
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 1.06 seconds |
|
312
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.17493 seconds |
|
313
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.20755 seconds |
|
314
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.23456 seconds |
|
315
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.11424 seconds |
|
316
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.14731 seconds |
|
317
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.18481 seconds |
|
318
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.15967 seconds |
|
319
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.1683 seconds |
|
320
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.32634 seconds |
|
321
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.35839 seconds |
|
322
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.2811 seconds |
|
323
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.68 seconds |
|
324
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.21077 seconds |
|
325
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 0.49528 seconds |
|
326
|
+
./spec/features/home_page_spec.rb[1:3] | failed | 0.13631 seconds |
|
327
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.20203 seconds |
|
328
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.14577 seconds |
|
329
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 0.84764 seconds |
|
330
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.16816 seconds |
|
331
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 0.67565 seconds |
|
332
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.53 seconds |
|
333
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.11934 seconds |
|
334
|
+
./spec/features/item_admin_spec.rb[1:1:2] | failed | 0.12816 seconds |
|
335
|
+
./spec/features/item_admin_spec.rb[1:1:3] | failed | 0.1431 seconds |
|
336
|
+
./spec/features/item_admin_spec.rb[1:1:4] | failed | 10.38 seconds |
|
337
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 5.1 seconds |
|
338
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 2.61 seconds |
|
339
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 11.05 seconds |
|
340
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 11.06 seconds |
|
341
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 10.89 seconds |
|
342
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 13.27 seconds |
|
343
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 10.95 seconds |
|
344
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 11.12 seconds |
|
345
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 2.25 seconds |
|
346
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 10.9 seconds |
|
347
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 4.48 seconds |
|
348
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | failed | 12.71 seconds |
|
349
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | failed | 12.8 seconds |
|
350
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | failed | 12.79 seconds |
|
351
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | failed | 13.18 seconds |
|
352
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | failed | 12.9 seconds |
|
353
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | failed | 12.46 seconds |
|
354
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 2.03 seconds |
|
355
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | failed | 12.83 seconds |
|
356
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 3.83 seconds |
|
357
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 3.05 seconds |
|
358
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 2.23 seconds |
|
359
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 2.05 seconds |
|
360
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.26 seconds |
|
361
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.53 seconds |
|
362
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.06 seconds |
|
363
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | pending | 0.99598 seconds |
|
364
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | pending | 1.06 seconds |
|
365
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 1.62 seconds |
|
366
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.02 seconds |
|
367
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.54997 seconds |
|
368
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 0.99232 seconds |
|
369
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.56204 seconds |
|
370
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.60758 seconds |
|
371
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | failed | 10.85 seconds |
|
372
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.49 seconds |
|
373
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.08 seconds |
|
374
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 1.03 seconds |
|
375
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 8.81 seconds |
|
376
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 1.18 seconds |
|
377
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | failed | 10.64 seconds |
|
378
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | failed | 10.48 seconds |
|
379
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 1.34 seconds |
|
380
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 1.28 seconds |
|
381
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | failed | 10.53 seconds |
|
382
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | failed | 10.51 seconds |
|
383
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | failed | 10.59 seconds |
|
384
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.12216 seconds |
|
385
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.1248 seconds |
|
386
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.18354 seconds |
|
387
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.22681 seconds |
|
388
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.14681 seconds |
|
389
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.13622 seconds |
|
390
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.16931 seconds |
|
391
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.10878 seconds |
|
392
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | failed | 0.10492 seconds |
|
393
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | failed | 10.24 seconds |
|
394
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | failed | 10.22 seconds |
|
395
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.37087 seconds |
|
396
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.44074 seconds |
|
397
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.89816 seconds |
|
398
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.78288 seconds |
|
399
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.72 seconds |
|
400
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.80178 seconds |
|
401
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.84408 seconds |
|
402
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.15699 seconds |
|
403
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.18841 seconds |
|
404
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.09834 seconds |
|
405
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.12316 seconds |
|
406
|
+
./spec/features/slideshow_spec.rb[1:1] | pending | 10.48 seconds |
|
407
|
+
./spec/features/tags_admin_spec.rb[1:1:1] | passed | 0.16318 seconds |
|
408
|
+
./spec/features/tags_admin_spec.rb[1:1:2] | passed | 0.56508 seconds |
|
409
|
+
./spec/features/tags_admin_spec.rb[1:2:1] | passed | 0.23428 seconds |
|
410
|
+
./spec/features/user_admin_spec.rb[1:1:1] | passed | 0.14002 seconds |
|
411
|
+
./spec/features/user_admin_spec.rb[1:1:2] | passed | 0.91908 seconds |
|
412
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01194 seconds |
|
413
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.01503 seconds |
|
414
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.01004 seconds |
|
415
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.01275 seconds |
|
416
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01084 seconds |
|
417
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.06484 seconds |
|
418
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01042 seconds |
|
419
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.01296 seconds |
|
420
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.06608 seconds |
|
421
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.0654 seconds |
|
422
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.00986 seconds |
|
423
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01101 seconds |
|
424
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01194 seconds |
|
425
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01293 seconds |
|
426
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01185 seconds |
|
427
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.01286 seconds |
|
428
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.01276 seconds |
|
429
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.01509 seconds |
|
430
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.01104 seconds |
|
431
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01328 seconds |
|
432
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.08069 seconds |
|
433
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.08239 seconds |
|
434
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.07413 seconds |
|
435
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.06783 seconds |
|
436
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.06664 seconds |
|
437
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.06907 seconds |
|
438
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.07436 seconds |
|
439
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.07541 seconds |
|
440
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.08135 seconds |
|
441
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.07184 seconds |
|
442
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.10595 seconds |
|
443
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.06998 seconds |
|
444
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.01125 seconds |
|
445
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.06513 seconds |
|
446
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01256 seconds |
|
447
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.08309 seconds |
|
448
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.01033 seconds |
|
449
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.07719 seconds |
|
450
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.06536 seconds |
|
451
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.06815 seconds |
|
452
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01334 seconds |
|
453
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.06857 seconds |
|
454
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.01445 seconds |
|
455
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.08224 seconds |
|
456
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.08018 seconds |
|
457
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.08293 seconds |
|
458
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.0653 seconds |
|
459
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.01261 seconds |
|
460
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.01227 seconds |
|
461
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.0125 seconds |
|
462
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.08788 seconds |
|
463
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.08044 seconds |
|
464
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.08565 seconds |
|
465
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.08023 seconds |
|
466
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.08492 seconds |
|
467
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.08425 seconds |
|
468
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.07932 seconds |
|
469
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.11449 seconds |
|
470
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.08373 seconds |
|
471
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.07423 seconds |
|
472
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.08332 seconds |
|
473
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.0808 seconds |
|
474
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.07997 seconds |
|
475
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.08117 seconds |
|
476
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.01173 seconds |
|
477
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.01199 seconds |
|
478
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.01091 seconds |
|
479
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.01121 seconds |
|
480
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.012 seconds |
|
481
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.01214 seconds |
|
482
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01168 seconds |
|
483
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01244 seconds |
|
484
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.01378 seconds |
|
485
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.01141 seconds |
|
486
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.08285 seconds |
|
487
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.14601 seconds |
|
488
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.01169 seconds |
|
489
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.14584 seconds |
|
490
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.15261 seconds |
|
491
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.15682 seconds |
|
492
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.14684 seconds |
|
493
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.15477 seconds |
|
494
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.17348 seconds |
|
495
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.07138 seconds |
|
496
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.08491 seconds |
|
497
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.0721 seconds |
|
498
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.13014 seconds |
|
499
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.10481 seconds |
|
500
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.10403 seconds |
|
501
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.09743 seconds |
|
502
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.10178 seconds |
|
503
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.0922 seconds |
|
504
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.026 seconds |
|
505
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.00845 seconds |
|
506
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.0106 seconds |
|
507
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.00991 seconds |
|
508
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.0096 seconds |
|
509
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00853 seconds |
|
510
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.00918 seconds |
|
511
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.0641 seconds |
|
512
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.01276 seconds |
|
513
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01024 seconds |
|
514
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.01022 seconds |
|
515
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.0711 seconds |
|
516
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.03269 seconds |
|
517
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.01421 seconds |
|
518
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.01232 seconds |
|
519
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.01462 seconds |
|
520
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.08046 seconds |
|
521
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.08998 seconds |
|
522
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.07578 seconds |
|
523
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.07363 seconds |
|
524
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.09772 seconds |
|
525
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.07141 seconds |
|
526
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.08394 seconds |
|
527
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.07722 seconds |
|
528
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.06938 seconds |
|
529
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.08188 seconds |
|
530
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.08182 seconds |
|
531
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.07534 seconds |
|
532
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.0091 seconds |
|
533
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.01153 seconds |
|
534
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.01136 seconds |
|
535
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00983 seconds |
|
536
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00993 seconds |
|
537
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00952 seconds |
|
538
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.00904 seconds |
|
539
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.07578 seconds |
|
540
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.06955 seconds |
|
541
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.11761 seconds |
|
542
|
+
./spec/models/solr_document_spec.rb[1:6] | failed | 0.02318 seconds |
|
543
|
+
./spec/models/solr_document_spec.rb[1:7] | failed | 0.01625 seconds |
|
544
|
+
./spec/models/solr_document_spec.rb[1:8:1] | failed | 0.01269 seconds |
|
545
|
+
./spec/models/solr_document_spec.rb[1:8:2] | failed | 0.0136 seconds |
|
546
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.1006 seconds |
|
547
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.121 seconds |
|
548
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.06752 seconds |
|
549
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.09474 seconds |
|
550
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.07781 seconds |
|
551
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.12019 seconds |
|
552
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.09673 seconds |
|
553
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.07669 seconds |
|
554
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.06739 seconds |
|
555
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.06762 seconds |
|
556
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.06526 seconds |
|
557
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.07366 seconds |
|
558
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.08765 seconds |
|
559
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00823 seconds |
|
560
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.01065 seconds |
|
561
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.00896 seconds |
|
562
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.01016 seconds |
|
563
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.01103 seconds |
|
564
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.01261 seconds |
|
565
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01092 seconds |
|
566
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.06899 seconds |
|
567
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.08218 seconds |
|
568
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.08147 seconds |
|
569
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.06938 seconds |
|
570
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.0866 seconds |
|
571
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.08854 seconds |
|
572
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.08123 seconds |
|
573
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.02544 seconds |
|
574
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.07269 seconds |
|
575
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.07957 seconds |
|
576
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.0803 seconds |
|
577
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.08327 seconds |
|
578
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.07038 seconds |
|
579
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.0755 seconds |
|
580
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.07623 seconds |
|
581
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.09876 seconds |
|
582
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.07191 seconds |
|
583
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.07372 seconds |
|
584
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.07964 seconds |
|
585
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.0789 seconds |
|
586
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.10705 seconds |
|
587
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.08789 seconds |
|
588
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.1152 seconds |
|
589
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.1133 seconds |
|
590
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.08195 seconds |
|
591
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.08293 seconds |
|
592
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.09717 seconds |
|
593
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.09038 seconds |
|
594
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.07224 seconds |
|
595
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.10614 seconds |
|
596
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.09465 seconds |
|
597
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.0766 seconds |
|
598
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.0811 seconds |
|
599
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.00926 seconds |
|
600
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01158 seconds |
|
601
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.0648 seconds |
|
602
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.06742 seconds |
|
603
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.06038 seconds |
|
604
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.0682 seconds |
|
605
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.07689 seconds |
|
606
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.07806 seconds |
|
607
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.0978 seconds |
|
608
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.08664 seconds |
|
609
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.06234 seconds |
|
610
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.06518 seconds |
|
611
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.07462 seconds |
|
612
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.06371 seconds |
|
613
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.06903 seconds |
|
614
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.06842 seconds |
|
615
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.06978 seconds |
|
616
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.06444 seconds |
|
617
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.06822 seconds |
|
618
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.06086 seconds |
|
619
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.0699 seconds |
|
620
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.08636 seconds |
|
621
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.062 seconds |
|
622
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.05936 seconds |
|
623
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.07174 seconds |
|
624
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.07119 seconds |
|
625
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.06471 seconds |
|
626
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.06196 seconds |
|
627
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.06454 seconds |
|
628
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.07303 seconds |
|
629
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.06754 seconds |
|
630
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10:1] | passed | 0.0665 seconds |
|
631
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10:2] | passed | 0.06283 seconds |
|
632
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10:3] | passed | 0.06942 seconds |
|
633
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11] | passed | 0.06216 seconds |
|
634
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.06296 seconds |
|
635
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.06319 seconds |
|
636
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.08048 seconds |
|
637
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.065 seconds |
|
638
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.06877 seconds |
|
639
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17:1] | passed | 0.06501 seconds |
|
640
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.06553 seconds |
|
641
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.06539 seconds |
|
642
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.06594 seconds |
|
643
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.07304 seconds |
|
644
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.13267 seconds |
|
645
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.09305 seconds |
|
646
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.06434 seconds |
|
647
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.08734 seconds |
|
648
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.06155 seconds |
|
649
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.06277 seconds |
|
650
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.06796 seconds |
|
651
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.06383 seconds |
|
652
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.06692 seconds |
|
653
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.0588 seconds |
|
654
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.0638 seconds |
|
655
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.06007 seconds |
|
656
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.06297 seconds |
|
657
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.06469 seconds |
|
658
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.06926 seconds |
|
659
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.06425 seconds |
|
660
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.0694 seconds |
|
661
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.06347 seconds |
|
662
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.06759 seconds |
|
663
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.0602 seconds |
|
664
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.06345 seconds |
|
665
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.05963 seconds |
|
666
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.06178 seconds |
|
667
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.07376 seconds |
|
668
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.06463 seconds |
|
669
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.09275 seconds |
|
670
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.08643 seconds |
|
671
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.07173 seconds |
|
672
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.07352 seconds |
|
673
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.06678 seconds |
|
674
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.06676 seconds |
|
675
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.06808 seconds |
|
676
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.06787 seconds |
|
677
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.06367 seconds |
|
678
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.06697 seconds |
|
679
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.06242 seconds |
|
680
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.06742 seconds |
|
681
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.08161 seconds |
|
682
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.05852 seconds |
|
683
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.06714 seconds |
|
684
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.07354 seconds |
|
685
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.07298 seconds |
|
686
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.05941 seconds |
|
687
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.08685 seconds |
|
688
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.05757 seconds |
|
689
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.06351 seconds |
|
690
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00889 seconds |
|
691
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.06432 seconds |
|
692
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.06393 seconds |
|
693
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.05555 seconds |
|
694
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.06423 seconds |
|
695
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.01161 seconds |
|
696
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.06455 seconds |
|
697
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.06656 seconds |
|
698
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.0149 seconds |
|
699
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.07063 seconds |
|
700
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.01341 seconds |
|
701
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.01433 seconds |
|
702
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01504 seconds |
|
703
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01473 seconds |
|
704
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.06774 seconds |
|
705
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.07014 seconds |
|
706
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.0675 seconds |
|
707
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.06987 seconds |
|
708
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.07741 seconds |
|
709
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.08497 seconds |
|
710
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.07266 seconds |
|
711
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.07296 seconds |
|
712
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.09742 seconds |
|
713
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.09652 seconds |
|
714
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.01978 seconds |
|
715
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.01898 seconds |
|
716
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.05541 seconds |
|
717
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.02842 seconds |
|
718
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5] | passed | 0.0227 seconds |
|
719
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.05868 seconds |
|
720
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:2] | passed | 0.07348 seconds |
|
721
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.06274 seconds |
|
722
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.06996 seconds |
|
723
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.02208 seconds |
|
724
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.06463 seconds |
|
725
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.05748 seconds |
|
726
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.09067 seconds |
|
727
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1:1] | passed | 0.10239 seconds |
|
728
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.06245 seconds |
|
729
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:3:1] | passed | 0.0869 seconds |
|
730
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1] | passed | 0.06335 seconds |
|
731
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.06838 seconds |
|
732
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1:1] | passed | 0.07123 seconds |
|
733
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:2:1] | passed | 0.06579 seconds |
|
734
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1] | passed | 0.06692 seconds |
|
735
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2] | passed | 0.06225 seconds |
|
736
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.02244 seconds |
|
737
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.02262 seconds |
|
738
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:3:1] | passed | 0.02326 seconds |
|
739
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:4:1] | passed | 0.01975 seconds |
|
740
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1:1] | passed | 0.09096 seconds |
|
741
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2:1] | passed | 0.02077 seconds |
|
742
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.11539 seconds |
|
743
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19] | passed | 0.01894 seconds |
|
744
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.01242 seconds |
|
745
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.08236 seconds |
|
746
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.1 seconds |
|
747
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.09303 seconds |
|
748
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.10572 seconds |
|
749
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.0098 seconds |
|
750
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.05482 seconds |
|
751
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.06096 seconds |
|
752
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.05485 seconds |
|
753
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.01061 seconds |
|
754
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.01205 seconds |
|
755
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.09449 seconds |
|
756
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.09365 seconds |
|
757
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.08798 seconds |
|
758
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.00877 seconds |
|
759
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.01009 seconds |
|
760
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.01073 seconds |
|
761
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.00924 seconds |
|
762
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | failed | 0.01283 seconds |
|
763
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | failed | 0.01147 seconds |
|
764
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.01181 seconds |
|
765
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01034 seconds |
|
766
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.00992 seconds |
|
767
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.06983 seconds |
|
768
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.06628 seconds |
|
769
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.0601 seconds |
|
770
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.06137 seconds |
|
771
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.01138 seconds |
|
772
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00953 seconds |
|
773
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.01203 seconds |
|
774
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.00947 seconds |
|
775
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.06282 seconds |
|
776
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.0682 seconds |
|
777
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.06304 seconds |
|
778
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.0645 seconds |
|
779
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.06314 seconds |
|
780
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.06854 seconds |
|
781
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.05587 seconds |
|
782
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.01016 seconds |
|
783
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01098 seconds |
|
784
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00813 seconds |
|
785
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.01053 seconds |
|
786
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.00903 seconds |
|
787
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.06228 seconds |
|
788
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.06771 seconds |
|
789
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.08556 seconds |
|
790
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.06425 seconds |
|
791
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.0664 seconds |
|
792
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.06522 seconds |
|
793
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.065 seconds |
|
794
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.13798 seconds |
|
795
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.12148 seconds |
|
796
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.13397 seconds |
|
797
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.12804 seconds |
|
798
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.15603 seconds |
|
799
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.12697 seconds |
|
800
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.16176 seconds |
|
801
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.12434 seconds |
|
802
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.08059 seconds |
|
803
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.09288 seconds |
|
804
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.06225 seconds |
|
805
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.05782 seconds |
|
806
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.06729 seconds |
|
807
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.24983 seconds |
|
808
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.05471 seconds |
|
809
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.06078 seconds |
|
810
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.0618 seconds |
|
811
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.06333 seconds |
|
812
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.06058 seconds |
|
813
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.0625 seconds |
|
814
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.06036 seconds |
|
815
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.00809 seconds |
|
816
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.55 seconds |
|
817
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.53 seconds |
|
818
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.08543 seconds |
|
819
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.0834 seconds |
|
820
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.06785 seconds |
|
821
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.08148 seconds |
|
822
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.07315 seconds |
|
823
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.08173 seconds |
|
824
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.07147 seconds |
|
825
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.07883 seconds |
|
826
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.16328 seconds |
|
827
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.10503 seconds |
|
828
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.12418 seconds |
|
829
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.11639 seconds |
|
830
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.13796 seconds |
|
831
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.13112 seconds |
|
832
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.12956 seconds |
|
833
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.0122 seconds |
|
834
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01049 seconds |
|
835
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.01405 seconds |
|
836
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.02284 seconds |
|
837
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.10218 seconds |
|
838
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.52194 seconds |
|
839
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.08952 seconds |
|
840
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.07552 seconds |
|
841
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.07805 seconds |
|
842
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.08034 seconds |
|
843
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.07766 seconds |
|
844
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.08258 seconds |
|
845
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.07892 seconds |
|
846
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.07948 seconds |
|
847
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.07563 seconds |
|
848
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.07923 seconds |
|
849
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.09094 seconds |
|
850
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.10763 seconds |
|
851
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.08958 seconds |
|
852
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.09188 seconds |
|
853
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.08942 seconds |
|
854
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.08882 seconds |
|
855
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.08716 seconds |
|
856
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.07793 seconds |
|
857
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01683 seconds |
|
858
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.02291 seconds |
|
859
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02697 seconds |
|
860
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.04286 seconds |
|
861
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.0398 seconds |
|
862
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.03896 seconds |
|
863
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.01071 seconds |
|
864
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.01003 seconds |
|
865
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.01007 seconds |
|
866
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.01893 seconds |
|
867
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | failed | 0.12098 seconds |
|
868
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | failed | 0.36314 seconds |
|
869
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | failed | 0.12246 seconds |
|
870
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | failed | 0.13595 seconds |
|
871
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | failed | 0.12277 seconds |
|
872
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | failed | 0.12848 seconds |
|
873
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | failed | 0.15053 seconds |
|
874
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | failed | 0.12343 seconds |
|
875
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | failed | 0.12947 seconds |
|
876
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | failed | 0.13211 seconds |
|
877
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.011 seconds |
|
878
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.00931 seconds |
|
879
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.01441 seconds |
|
880
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.20644 seconds |
|
881
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01889 seconds |
|
882
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.03435 seconds |
|
883
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | failed | 0.07508 seconds |
|
884
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.23942 seconds |
|
885
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.08554 seconds |
|
886
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.09035 seconds |
|
887
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.08528 seconds |
|
888
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.0801 seconds |
|
889
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.0745 seconds |
|
890
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.08974 seconds |
|
891
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.06938 seconds |
|
892
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.099 seconds |
|
893
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.01243 seconds |
|
894
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.16269 seconds |
|
895
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.06638 seconds |
|
896
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.06661 seconds |
|
897
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.06812 seconds |
|
898
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.05843 seconds |
|
899
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.08684 seconds |
|
900
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.1151 seconds |
|
901
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.06308 seconds |
|
902
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.07905 seconds |
|
903
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.01163 seconds |
|
904
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.01414 seconds |
|
905
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.01023 seconds |
|
906
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.01469 seconds |
|
907
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.01039 seconds |
|
908
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.03161 seconds |
|
909
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.07976 seconds |
|
910
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.06939 seconds |
|
911
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.06635 seconds |
|
912
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.00805 seconds |
|
913
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.01129 seconds |
|
914
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.01182 seconds |
|
915
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.07873 seconds |
|
916
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.07008 seconds |
|
917
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.08233 seconds |
|
918
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.07882 seconds |
|
919
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.07495 seconds |
|
920
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.07918 seconds |
|
921
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.08554 seconds |
|
922
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.16288 seconds |
|
923
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.07246 seconds |
|
924
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.07563 seconds |
|
925
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.00932 seconds |
|
926
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00944 seconds |
|
927
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.00971 seconds |
|
928
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00947 seconds |
|
929
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00888 seconds |
|
930
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.01055 seconds |
|
931
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.01178 seconds |
|
932
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00989 seconds |
|
933
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.00971 seconds |
|
934
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.00947 seconds |
|
935
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.01029 seconds |
|
936
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.00924 seconds |
|
937
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.00993 seconds |
|
938
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.07844 seconds |
|
939
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.09643 seconds |
|
940
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.07746 seconds |
|
941
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.10336 seconds |
|
942
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.0892 seconds |
|
943
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.07845 seconds |
|
944
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.09418 seconds |
|
945
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.08303 seconds |
|
946
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.0912 seconds |
|
947
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.08186 seconds |
|
948
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.08253 seconds |
|
949
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.0854 seconds |
|
950
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.21831 seconds |
|
951
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.19703 seconds |
|
952
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.20508 seconds |
|
953
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.1991 seconds |
|
954
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.1907 seconds |
|
955
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.20599 seconds |
|
956
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.21772 seconds |
|
957
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.22906 seconds |
|
958
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.21088 seconds |
|
959
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.19821 seconds |
|
960
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.26189 seconds |
|
961
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.21774 seconds |
|
962
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.255 seconds |
|
963
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.27606 seconds |
|
964
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.24746 seconds |
|
965
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.24348 seconds |
|
966
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.20599 seconds |
|
967
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.26799 seconds |
|
968
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.30029 seconds |
|
969
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.26126 seconds |
|
970
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.26951 seconds |
|
971
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.21246 seconds |
|
972
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.21706 seconds |
|
973
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.2742 seconds |
|
974
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.19527 seconds |
|
975
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.18471 seconds |
|
976
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.20368 seconds |
|
977
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.20482 seconds |
|
978
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.03673 seconds |
|
979
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.02603 seconds |
|
980
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.02012 seconds |
|
981
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.01951 seconds |
|
982
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.01904 seconds |
|
983
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.02327 seconds |
|
984
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.023 seconds |
|
985
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.12144 seconds |
|
986
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.15552 seconds |
|
987
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.13691 seconds |
|
988
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.06938 seconds |
|
989
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.18179 seconds |
|
990
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.18218 seconds |
|
991
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.18966 seconds |
|
992
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.02385 seconds |
|
993
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.02812 seconds |
|
994
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.01041 seconds |
|
995
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.01007 seconds |
|
996
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.01954 seconds |
|
997
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.01777 seconds |
|
998
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.01634 seconds |
|
999
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.01635 seconds |
|
1000
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.01622 seconds |
|
1001
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.06391 seconds |
|
1002
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.06634 seconds |
|
1003
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.11523 seconds |
|
1004
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.06518 seconds |
|
1005
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.06607 seconds |
|
1006
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.07248 seconds |
|
1007
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.0655 seconds |
|
1008
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.01832 seconds |
|
1009
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.07366 seconds |
|
1010
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.06769 seconds |
|
1011
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.28581 seconds |
|
1012
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.07901 seconds |
|
1013
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.0907 seconds |
|
1014
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.06906 seconds |
|
1015
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.13159 seconds |
|
1016
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.08234 seconds |
|
1017
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.08094 seconds |
|
1018
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.07949 seconds |
|
1019
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.09518 seconds |
|
1020
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.09151 seconds |
|
1021
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.07593 seconds |
|
1022
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.07614 seconds |
|
1023
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.07869 seconds |
|
1024
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.06447 seconds |
|
1025
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.06658 seconds |
|
1026
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.06355 seconds |
|
1027
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.06206 seconds |
|
1028
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.06815 seconds |
|
1029
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.13118 seconds |
|
1030
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.08885 seconds |
|
1031
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.07334 seconds |
|
1032
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.10024 seconds |
|
1033
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.09616 seconds |
|
1034
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.09308 seconds |
|
1035
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.09734 seconds |
|
1036
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01355 seconds |
|
1037
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.02078 seconds |
|
1038
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01442 seconds |
|
1039
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.12505 seconds |
|
1040
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 1.77 seconds |
|
1041
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.04085 seconds |
|
1042
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.0429 seconds |
|
1043
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.14353 seconds |
|
1044
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.2013 seconds |
|
1045
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.1344 seconds |
|
1046
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.0718 seconds |
|
1047
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.01188 seconds |
|
1048
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.15266 seconds |
|
1049
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.15198 seconds |
|
1050
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.15073 seconds |
|
1051
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.16692 seconds |
|
1052
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.1698 seconds |
|
1053
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.40798 seconds |
|
1054
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.15364 seconds |
|
1055
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.14881 seconds |
|
1056
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:8] | passed | 0.15089 seconds |
|
1057
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.02444 seconds |
|
1058
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.02787 seconds |
|
1059
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.05042 seconds |
|
1060
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.50473 seconds |
|
1061
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.04306 seconds |
|
1062
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.04353 seconds |
|
1063
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.0231 seconds |
|
1064
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.28809 seconds |
|
1065
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.06321 seconds |
|
1066
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.06438 seconds |
|
1067
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.06833 seconds |
|
1068
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.07155 seconds |
|
1069
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.06748 seconds |
|
1070
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01309 seconds |
|
1071
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01152 seconds |
|
1072
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.37128 seconds |
|
1073
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.32152 seconds |
|
1074
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.29599 seconds |
|
1075
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.27675 seconds |
|
1076
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.28131 seconds |
|
1077
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.33536 seconds |
|
1078
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.32013 seconds |
|
1079
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.07015 seconds |
|
1080
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.09732 seconds |
|
1081
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.07483 seconds |
|
1082
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.23459 seconds |
|
1083
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.08013 seconds |
|
1084
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.06972 seconds |
|
1085
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.12153 seconds |
|
1086
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.08792 seconds |
|
1087
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 0.87378 seconds |
|
1088
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 1.21 seconds |
|
1089
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.21523 seconds |
|
1090
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.18863 seconds |
|
1091
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.18736 seconds |
|
1092
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.28481 seconds |
|
1093
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.18589 seconds |
|
1094
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.25333 seconds |
|
1095
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.25804 seconds |
|
1096
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.20926 seconds |
|
1097
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.23758 seconds |
|
1098
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.0276 seconds |
|
1099
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01242 seconds |
|
1100
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01031 seconds |
|
1101
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01741 seconds |
|
1102
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.20761 seconds |
|
1103
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.20929 seconds |
|
1104
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.07141 seconds |
|
1105
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.08075 seconds |
|
1106
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.02184 seconds |
|
1107
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.16978 seconds |
|
1108
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.06987 seconds |
|
1109
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.37038 seconds |
|
1110
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.02872 seconds |
|
1111
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.02468 seconds |
|
1112
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.02518 seconds |
|
1113
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.02458 seconds |
|
1114
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.027 seconds |
|
1115
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.02872 seconds |
|
1116
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.08075 seconds |
|
1117
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.04723 seconds |
|
1118
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03008 seconds |
|
1119
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.29184 seconds |
|
1120
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.02718 seconds |
|
1121
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.02534 seconds |
|
1122
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02678 seconds |
|
1123
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.04309 seconds |
|
1124
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.02398 seconds |
|
1125
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.08161 seconds |
|
1126
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.18578 seconds |
|
1127
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02173 seconds |
|
1128
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.33881 seconds |
|
1129
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.03326 seconds |
|
1130
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.0876 seconds |
|
1131
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.35153 seconds |
|
1132
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.07955 seconds |
|
1133
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.01223 seconds |
|
1134
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.01239 seconds |
|
1135
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.10218 seconds |
|
1136
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.10868 seconds |
|
1137
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.373 seconds |
|
1138
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.10498 seconds |
|
1139
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.07777 seconds |
|
1140
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.11376 seconds |
|
1141
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.08306 seconds |
|
1142
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.07525 seconds |
|
1143
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.07773 seconds |
|
1144
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.12966 seconds |
|
1145
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.08167 seconds |
|
1146
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.11691 seconds |
|
1147
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.08673 seconds |
|
1148
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.15135 seconds |
|
1149
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.12625 seconds |
|
1150
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.23716 seconds |
|
1151
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.10334 seconds |
|
1152
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.02526 seconds |
|
1153
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.08541 seconds |
|
1154
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.12903 seconds |
|
1155
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.08114 seconds |
|
1156
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01817 seconds |
|
1157
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.16322 seconds |
|
1158
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.07511 seconds |
|
1159
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.07716 seconds |
|
1160
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.08108 seconds |
|
1161
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.0795 seconds |
|
1162
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.12453 seconds |
|
1163
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.02052 seconds |
|
1164
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.07687 seconds |
|
1165
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.46498 seconds |
|
1166
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.13721 seconds |
|
1167
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.10014 seconds |
|