blacklight-spotlight 1.0.0.alpha2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/spotlight/blocks/uploaded_items_block.js +6 -1
- data/app/assets/javascripts/spotlight/sir-trevor/locales.js +2 -1
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +5 -0
- data/lib/spotlight/version.rb +1 -1
- data/lib/tasks/spotlight_tasks.rake +1 -1
- data/spec/examples.txt +1136 -0
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +2 -0
- metadata +11 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f70d64ceee688642329ed7e806e8c7b65dfe180
|
4
|
+
data.tar.gz: 53170077f35be3b010e71ca3865d094886337050
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59bce50a85d3172c19f268e91fb2fdc9400197ba8443d5eeb165131427d7cac455cf203ccd93f952fe4316b120af0e0dc3e6c820eea60eb0fd1f444a07ed2dff
|
7
|
+
data.tar.gz: b60c9a739d273bc57bfe25bc68e74bbb2aafd173eb4d0362dbaba4f7e84b8f7d5eb18b8cfb433be45ec91784b00494e3f60e7971e579001f8b172fe6770cc6a4
|
@@ -83,8 +83,12 @@ SirTrevor.Blocks.UploadedItems = (function(){
|
|
83
83
|
'<div class="pic thumbnail">',
|
84
84
|
'<img src="' + dataUrl + '" />',
|
85
85
|
'</div>',
|
86
|
-
'<div class="main">',
|
86
|
+
'<div class="main form-horizontal">',
|
87
87
|
'<div class="title panel-title">' + dataTitle + '</div>',
|
88
|
+
'<div class="field">',
|
89
|
+
'<label for="' + this.formId('caption_' + dataId) + '" class="control-label col-md-3"><%= i18n.t("blocks:uploaded_items:caption") %></label>',
|
90
|
+
'<input type="text" class="form-control" id="' + this.formId('caption_' + dataId) + '" name="item[' + index + '][caption]" data-field="caption"/>',
|
91
|
+
'</div>',
|
88
92
|
'</div>',
|
89
93
|
'<div class="remove pull-right">',
|
90
94
|
'<a data-item-grid-panel-remove="true" href="#"><%= i18n.t("blocks:resources:panel:remove") %></a>',
|
@@ -95,6 +99,7 @@ SirTrevor.Blocks.UploadedItems = (function(){
|
|
95
99
|
].join("\n");
|
96
100
|
|
97
101
|
var panel = $(_.template(markup)(this));
|
102
|
+
panel.find('[data-field="caption"]').val(data.caption);
|
98
103
|
var context = this;
|
99
104
|
|
100
105
|
$('.remove a', panel).on('click', function(e) {
|
@@ -23,7 +23,8 @@ SirTrevor.Locales.en.blocks = $.extend(SirTrevor.Locales.en.blocks, {
|
|
23
23
|
|
24
24
|
uploaded_items: {
|
25
25
|
title: "Uploaded Item Row",
|
26
|
-
description: "This widget displays uploaded items in a horizontal row. Optionally, you can add a heading and/or text to be displayed adjacent to the items."
|
26
|
+
description: "This widget displays uploaded items in a horizontal row. Optionally, you can add a heading and/or text to be displayed adjacent to the items.",
|
27
|
+
caption: 'Caption'
|
27
28
|
},
|
28
29
|
|
29
30
|
featured_pages: {
|
data/lib/spotlight/version.rb
CHANGED
data/spec/examples.txt
ADDED
@@ -0,0 +1,1136 @@
|
|
1
|
+
example_id | status | run_time |
|
2
|
+
--------------------------------------------------------------------------------------------- | ------- | --------------------- |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.07573 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.30594 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.08452 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.08193 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.25594 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.13451 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.13988 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.10763 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.10835 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.09598 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.11149 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.1633 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.12055 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.08881 seconds |
|
17
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.02464 seconds |
|
18
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.04345 seconds |
|
19
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.03781 seconds |
|
20
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.07948 seconds |
|
21
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.06432 seconds |
|
22
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.0879 seconds |
|
23
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.13679 seconds |
|
24
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.06322 seconds |
|
25
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.0686 seconds |
|
26
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.08747 seconds |
|
27
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1:1] | passed | 0.13056 seconds |
|
28
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.09797 seconds |
|
29
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:1] | passed | 0.13101 seconds |
|
30
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:2] | passed | 0.12142 seconds |
|
31
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:3] | passed | 0.10407 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:2:4] | passed | 0.24016 seconds |
|
33
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01274 seconds |
|
34
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.0145 seconds |
|
35
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.01195 seconds |
|
36
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.06898 seconds |
|
37
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.06887 seconds |
|
38
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.1805 seconds |
|
39
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.12366 seconds |
|
40
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.12092 seconds |
|
41
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.16968 seconds |
|
42
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.08538 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.09262 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.24556 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.07939 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.10965 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.09031 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.26048 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.10289 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.07877 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.07706 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.10472 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.07565 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.07556 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.13215 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.12212 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.10032 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.17991 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.17034 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.15882 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.10651 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.09698 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.09517 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.06803 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.06604 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.0802 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.11192 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.10255 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.12322 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.12352 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01347 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.00881 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.06527 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.08294 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.06776 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.00885 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.00961 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.00906 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.0629 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.0629 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.06321 seconds |
|
82
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.05738 seconds |
|
83
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.01513 seconds |
|
84
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.32737 seconds |
|
85
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.16539 seconds |
|
86
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.09995 seconds |
|
87
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.1081 seconds |
|
88
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.06832 seconds |
|
89
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.10087 seconds |
|
90
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.09207 seconds |
|
91
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.10144 seconds |
|
92
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.09833 seconds |
|
93
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.09443 seconds |
|
94
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.09611 seconds |
|
95
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.07874 seconds |
|
96
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.09319 seconds |
|
97
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.09791 seconds |
|
98
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.14741 seconds |
|
99
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.14495 seconds |
|
100
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.08979 seconds |
|
101
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.08841 seconds |
|
102
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.13322 seconds |
|
103
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.10123 seconds |
|
104
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.08557 seconds |
|
105
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.09301 seconds |
|
106
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.06927 seconds |
|
107
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.07998 seconds |
|
108
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.046 seconds |
|
109
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.07226 seconds |
|
110
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.07151 seconds |
|
111
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.08073 seconds |
|
112
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.064 seconds |
|
113
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.07566 seconds |
|
114
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.04299 seconds |
|
115
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.12145 seconds |
|
116
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.10381 seconds |
|
117
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.10428 seconds |
|
118
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.10282 seconds |
|
119
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.09754 seconds |
|
120
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.08326 seconds |
|
121
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.13025 seconds |
|
122
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.19821 seconds |
|
123
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:1:1] | passed | 0.14746 seconds |
|
124
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:2:1] | passed | 0.11446 seconds |
|
125
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:3:1] | passed | 0.1704 seconds |
|
126
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:4:1] | passed | 0.15345 seconds |
|
127
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:1] | passed | 0.12532 seconds |
|
128
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:2] | passed | 0.10357 seconds |
|
129
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:3] | passed | 0.11062 seconds |
|
130
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:1] | passed | 0.09547 seconds |
|
131
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:2] | passed | 0.09523 seconds |
|
132
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:1] | passed | 0.11386 seconds |
|
133
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:2] | passed | 0.12074 seconds |
|
134
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:3] | passed | 0.13449 seconds |
|
135
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:1] | passed | 0.16724 seconds |
|
136
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:2] | passed | 0.12755 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:7:1] | passed | 0.1439 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:1] | passed | 0.11695 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:2] | passed | 0.11746 seconds |
|
140
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.03724 seconds |
|
141
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.05929 seconds |
|
142
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.0447 seconds |
|
143
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.04826 seconds |
|
144
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.07743 seconds |
|
145
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.10571 seconds |
|
146
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.08868 seconds |
|
147
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.11036 seconds |
|
148
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.53773 seconds |
|
149
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.11548 seconds |
|
150
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.1081 seconds |
|
151
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.12716 seconds |
|
152
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.1296 seconds |
|
153
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.09753 seconds |
|
154
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.12016 seconds |
|
155
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.09416 seconds |
|
156
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.08955 seconds |
|
157
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:2] | passed | 0.21527 seconds |
|
158
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:3] | passed | 0.14672 seconds |
|
159
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.09043 seconds |
|
160
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.08575 seconds |
|
161
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.07482 seconds |
|
162
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.09252 seconds |
|
163
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.09992 seconds |
|
164
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.09852 seconds |
|
165
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.10276 seconds |
|
166
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.08166 seconds |
|
167
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.10645 seconds |
|
168
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.10911 seconds |
|
169
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.0837 seconds |
|
170
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.09037 seconds |
|
171
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.11803 seconds |
|
172
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.11646 seconds |
|
173
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.11498 seconds |
|
174
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.07159 seconds |
|
175
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.07345 seconds |
|
176
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.08521 seconds |
|
177
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.06605 seconds |
|
178
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.1047 seconds |
|
179
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.09818 seconds |
|
180
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.09125 seconds |
|
181
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.09989 seconds |
|
182
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.08241 seconds |
|
183
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.08269 seconds |
|
184
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.09075 seconds |
|
185
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.11608 seconds |
|
186
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.09278 seconds |
|
187
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.09034 seconds |
|
188
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.08343 seconds |
|
189
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.09653 seconds |
|
190
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.09648 seconds |
|
191
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.0755 seconds |
|
192
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.06749 seconds |
|
193
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06777 seconds |
|
194
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.10502 seconds |
|
195
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.1011 seconds |
|
196
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.10029 seconds |
|
197
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.09858 seconds |
|
198
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.10899 seconds |
|
199
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.09572 seconds |
|
200
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.07849 seconds |
|
201
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.07549 seconds |
|
202
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.11307 seconds |
|
203
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.12362 seconds |
|
204
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.19848 seconds |
|
205
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.24481 seconds |
|
206
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.13166 seconds |
|
207
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.14301 seconds |
|
208
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.13088 seconds |
|
209
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.11446 seconds |
|
210
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.11507 seconds |
|
211
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.17428 seconds |
|
212
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.02383 seconds |
|
213
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.03643 seconds |
|
214
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.03655 seconds |
|
215
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.17544 seconds |
|
216
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.10989 seconds |
|
217
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.10072 seconds |
|
218
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.11133 seconds |
|
219
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.09754 seconds |
|
220
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.12216 seconds |
|
221
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.12084 seconds |
|
222
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.09949 seconds |
|
223
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.07278 seconds |
|
224
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.10043 seconds |
|
225
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.08936 seconds |
|
226
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.10915 seconds |
|
227
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.01324 seconds |
|
228
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.09131 seconds |
|
229
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.14817 seconds |
|
230
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.07611 seconds |
|
231
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.08273 seconds |
|
232
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 36.55 seconds |
|
233
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.39726 seconds |
|
234
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.54619 seconds |
|
235
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.15275 seconds |
|
236
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 2.72 seconds |
|
237
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.24801 seconds |
|
238
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.61998 seconds |
|
239
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 1.56 seconds |
|
240
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.62341 seconds |
|
241
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.46208 seconds |
|
242
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.15632 seconds |
|
243
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.35916 seconds |
|
244
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.12951 seconds |
|
245
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.14428 seconds |
|
246
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.15406 seconds |
|
247
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.78291 seconds |
|
248
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | failed | 11.81 seconds |
|
249
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | failed | 10.63 seconds |
|
250
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | failed | 10.59 seconds |
|
251
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | failed | 10.62 seconds |
|
252
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.30081 seconds |
|
253
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.57 seconds |
|
254
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 1.1 seconds |
|
255
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.16139 seconds |
|
256
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.27089 seconds |
|
257
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.27971 seconds |
|
258
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.26684 seconds |
|
259
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.08764 seconds |
|
260
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.16023 seconds |
|
261
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.1778 seconds |
|
262
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.1813 seconds |
|
263
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.24903 seconds |
|
264
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.20891 seconds |
|
265
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.21141 seconds |
|
266
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.17845 seconds |
|
267
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.23752 seconds |
|
268
|
+
./spec/features/browse_category_spec.rb[1:1:5] | passed | 0.39976 seconds |
|
269
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.56036 seconds |
|
270
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.13319 seconds |
|
271
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.07596 seconds |
|
272
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.1973 seconds |
|
273
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.2909 seconds |
|
274
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.12846 seconds |
|
275
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.15002 seconds |
|
276
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 1.02 seconds |
|
277
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.28503 seconds |
|
278
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.30636 seconds |
|
279
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.29061 seconds |
|
280
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.59786 seconds |
|
281
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.21688 seconds |
|
282
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.32857 seconds |
|
283
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.22208 seconds |
|
284
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.1497 seconds |
|
285
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.15999 seconds |
|
286
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.31826 seconds |
|
287
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.1713 seconds |
|
288
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.2709 seconds |
|
289
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.40787 seconds |
|
290
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.3605 seconds |
|
291
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.3344 seconds |
|
292
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.16703 seconds |
|
293
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.30026 seconds |
|
294
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 1.28 seconds |
|
295
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.18037 seconds |
|
296
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.15454 seconds |
|
297
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.34169 seconds |
|
298
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 2.29 seconds |
|
299
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.65459 seconds |
|
300
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.21546 seconds |
|
301
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.45978 seconds |
|
302
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.37789 seconds |
|
303
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | failed | 10.64 seconds |
|
304
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.17574 seconds |
|
305
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.17566 seconds |
|
306
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.24965 seconds |
|
307
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.20082 seconds |
|
308
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.52322 seconds |
|
309
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.14926 seconds |
|
310
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.15265 seconds |
|
311
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.16243 seconds |
|
312
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.34844 seconds |
|
313
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.3305 seconds |
|
314
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.24389 seconds |
|
315
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.83 seconds |
|
316
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.27583 seconds |
|
317
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 4.18 seconds |
|
318
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.68666 seconds |
|
319
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.21808 seconds |
|
320
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.15234 seconds |
|
321
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 0.83414 seconds |
|
322
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.12802 seconds |
|
323
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 13.31 seconds |
|
324
|
+
./spec/features/import_exhibit_spec.rb[1:2] | failed | 28.66 seconds |
|
325
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.20892 seconds |
|
326
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.2103 seconds |
|
327
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.47806 seconds |
|
328
|
+
./spec/features/item_admin_spec.rb[1:1:4] | failed | 3 minutes 0.1 seconds |
|
329
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | failed | 2 minutes 0.2 seconds |
|
330
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | failed | 10.73 seconds |
|
331
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 0.54228 seconds |
|
332
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 0.38927 seconds |
|
333
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 0.55221 seconds |
|
334
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 0.49978 seconds |
|
335
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 0.37085 seconds |
|
336
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | failed | 0.34283 seconds |
|
337
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | failed | 0.33624 seconds |
|
338
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | failed | 0.36428 seconds |
|
339
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | failed | 0.37466 seconds |
|
340
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | failed | 0.35557 seconds |
|
341
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | failed | 0.35315 seconds |
|
342
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | failed | 0.36666 seconds |
|
343
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | failed | 0.34726 seconds |
|
344
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | failed | 0.36393 seconds |
|
345
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | failed | 0.3474 seconds |
|
346
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | failed | 0.36015 seconds |
|
347
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | failed | 0.34239 seconds |
|
348
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | failed | 10.45 seconds |
|
349
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | failed | 10.84 seconds |
|
350
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | failed | 10.86 seconds |
|
351
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | failed | 11 seconds |
|
352
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | failed | 2.12 seconds |
|
353
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | failed | 0.4585 seconds |
|
354
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | failed | 10.84 seconds |
|
355
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | failed | 10.94 seconds |
|
356
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | failed | 0.48245 seconds |
|
357
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | failed | 0.35438 seconds |
|
358
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | failed | 10.55 seconds |
|
359
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | failed | 10.88 seconds |
|
360
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | failed | 0.61763 seconds |
|
361
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.98 seconds |
|
362
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | failed | 11.2 seconds |
|
363
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | failed | 10.68 seconds |
|
364
|
+
./spec/features/javascript/rule_block_spec.rb[1:1] | failed | 0.6675 seconds |
|
365
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | failed | 10.88 seconds |
|
366
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | failed | 10.74 seconds |
|
367
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | failed | 10.75 seconds |
|
368
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | failed | 10.46 seconds |
|
369
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | failed | 10.74 seconds |
|
370
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | failed | 10.7 seconds |
|
371
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | failed | 0.86623 seconds |
|
372
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | failed | 0.41573 seconds |
|
373
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.81 seconds |
|
374
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.14899 seconds |
|
375
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.14088 seconds |
|
376
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.16652 seconds |
|
377
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.248 seconds |
|
378
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.23116 seconds |
|
379
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.16279 seconds |
|
380
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.16439 seconds |
|
381
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.14473 seconds |
|
382
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.22893 seconds |
|
383
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 1.41 seconds |
|
384
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | failed | 10.9 seconds |
|
385
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.52822 seconds |
|
386
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.4557 seconds |
|
387
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 1.88 seconds |
|
388
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 1.19 seconds |
|
389
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 2.08 seconds |
|
390
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.80551 seconds |
|
391
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.13782 seconds |
|
392
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.1507 seconds |
|
393
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.09253 seconds |
|
394
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.09454 seconds |
|
395
|
+
./spec/features/slideshow_spec.rb[1:1] | failed | 3 minutes 0.1 seconds |
|
396
|
+
./spec/features/tags_admin_spec.rb[1:1:1] | failed | 2 minutes 0.3 seconds |
|
397
|
+
./spec/features/tags_admin_spec.rb[1:1:2] | passed | 0.18674 seconds |
|
398
|
+
./spec/features/tags_admin_spec.rb[1:2:1] | passed | 0.19997 seconds |
|
399
|
+
./spec/features/user_admin_spec.rb[1:1:1] | passed | 0.12406 seconds |
|
400
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.00793 seconds |
|
401
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.00686 seconds |
|
402
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.00678 seconds |
|
403
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.00622 seconds |
|
404
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.00728 seconds |
|
405
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.06061 seconds |
|
406
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.00566 seconds |
|
407
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.00622 seconds |
|
408
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.05736 seconds |
|
409
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.06552 seconds |
|
410
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.00986 seconds |
|
411
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01023 seconds |
|
412
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01267 seconds |
|
413
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.0077 seconds |
|
414
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.00737 seconds |
|
415
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.00731 seconds |
|
416
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.00757 seconds |
|
417
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.0061 seconds |
|
418
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.00883 seconds |
|
419
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.00718 seconds |
|
420
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.07744 seconds |
|
421
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.06312 seconds |
|
422
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.06492 seconds |
|
423
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.05835 seconds |
|
424
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.05795 seconds |
|
425
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.05814 seconds |
|
426
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.06546 seconds |
|
427
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.06609 seconds |
|
428
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.06859 seconds |
|
429
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.06442 seconds |
|
430
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.06497 seconds |
|
431
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.05993 seconds |
|
432
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.00609 seconds |
|
433
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.06113 seconds |
|
434
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.007 seconds |
|
435
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.06349 seconds |
|
436
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.00692 seconds |
|
437
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.06351 seconds |
|
438
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.07406 seconds |
|
439
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.0808 seconds |
|
440
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.00952 seconds |
|
441
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.07528 seconds |
|
442
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.00809 seconds |
|
443
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.08842 seconds |
|
444
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.0716 seconds |
|
445
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.0919 seconds |
|
446
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.10929 seconds |
|
447
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.00859 seconds |
|
448
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.01346 seconds |
|
449
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.0154 seconds |
|
450
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.13876 seconds |
|
451
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.1252 seconds |
|
452
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.12046 seconds |
|
453
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.11578 seconds |
|
454
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.16042 seconds |
|
455
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.11815 seconds |
|
456
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.10303 seconds |
|
457
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.07983 seconds |
|
458
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.07723 seconds |
|
459
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.08232 seconds |
|
460
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.08326 seconds |
|
461
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.07576 seconds |
|
462
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.07156 seconds |
|
463
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.07075 seconds |
|
464
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.00679 seconds |
|
465
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.00668 seconds |
|
466
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.00599 seconds |
|
467
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.00546 seconds |
|
468
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.00706 seconds |
|
469
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.0086 seconds |
|
470
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.00764 seconds |
|
471
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.00607 seconds |
|
472
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.00606 seconds |
|
473
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.00655 seconds |
|
474
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.06607 seconds |
|
475
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.13139 seconds |
|
476
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00525 seconds |
|
477
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.12787 seconds |
|
478
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.14161 seconds |
|
479
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.14299 seconds |
|
480
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.17604 seconds |
|
481
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.14831 seconds |
|
482
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.14985 seconds |
|
483
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.06044 seconds |
|
484
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.06977 seconds |
|
485
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.06474 seconds |
|
486
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.08651 seconds |
|
487
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.08293 seconds |
|
488
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.07883 seconds |
|
489
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.07663 seconds |
|
490
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.08997 seconds |
|
491
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.08994 seconds |
|
492
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.01916 seconds |
|
493
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.00574 seconds |
|
494
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.00506 seconds |
|
495
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.00502 seconds |
|
496
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.00623 seconds |
|
497
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00585 seconds |
|
498
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.00596 seconds |
|
499
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.06032 seconds |
|
500
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.00643 seconds |
|
501
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.00637 seconds |
|
502
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.00728 seconds |
|
503
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.08028 seconds |
|
504
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.09785 seconds |
|
505
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.0071 seconds |
|
506
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.00681 seconds |
|
507
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.00778 seconds |
|
508
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.00603 seconds |
|
509
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.08362 seconds |
|
510
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.07486 seconds |
|
511
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.06819 seconds |
|
512
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.0652 seconds |
|
513
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.07288 seconds |
|
514
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.06826 seconds |
|
515
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.07044 seconds |
|
516
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.08915 seconds |
|
517
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00688 seconds |
|
518
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00521 seconds |
|
519
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.00485 seconds |
|
520
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00575 seconds |
|
521
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.0048 seconds |
|
522
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00563 seconds |
|
523
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.00486 seconds |
|
524
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.06128 seconds |
|
525
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.05711 seconds |
|
526
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.07532 seconds |
|
527
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.0108 seconds |
|
528
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.01073 seconds |
|
529
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.00945 seconds |
|
530
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.01105 seconds |
|
531
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.05871 seconds |
|
532
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.1107 seconds |
|
533
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.05677 seconds |
|
534
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.07541 seconds |
|
535
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.07243 seconds |
|
536
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.10048 seconds |
|
537
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.08422 seconds |
|
538
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.0738 seconds |
|
539
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.05867 seconds |
|
540
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.0581 seconds |
|
541
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.05902 seconds |
|
542
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.06162 seconds |
|
543
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.06139 seconds |
|
544
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00568 seconds |
|
545
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.00513 seconds |
|
546
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.00493 seconds |
|
547
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.00501 seconds |
|
548
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.00514 seconds |
|
549
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.0057 seconds |
|
550
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.00512 seconds |
|
551
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.05735 seconds |
|
552
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.0595 seconds |
|
553
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.07286 seconds |
|
554
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.05961 seconds |
|
555
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.07458 seconds |
|
556
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.07478 seconds |
|
557
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.08627 seconds |
|
558
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.01827 seconds |
|
559
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.07093 seconds |
|
560
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.07615 seconds |
|
561
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.07801 seconds |
|
562
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.07538 seconds |
|
563
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.07782 seconds |
|
564
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.06884 seconds |
|
565
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.07156 seconds |
|
566
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.07023 seconds |
|
567
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.06893 seconds |
|
568
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.06881 seconds |
|
569
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.06794 seconds |
|
570
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.06626 seconds |
|
571
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.06803 seconds |
|
572
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.07386 seconds |
|
573
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.09207 seconds |
|
574
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.08427 seconds |
|
575
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.06825 seconds |
|
576
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.07001 seconds |
|
577
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.08285 seconds |
|
578
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.07962 seconds |
|
579
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.06707 seconds |
|
580
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.07443 seconds |
|
581
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.07599 seconds |
|
582
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.09071 seconds |
|
583
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.07493 seconds |
|
584
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.00553 seconds |
|
585
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.00679 seconds |
|
586
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.06163 seconds |
|
587
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.06847 seconds |
|
588
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.05809 seconds |
|
589
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.06554 seconds |
|
590
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.06181 seconds |
|
591
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.06623 seconds |
|
592
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.06754 seconds |
|
593
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.03974 seconds |
|
594
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.06547 seconds |
|
595
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.06093 seconds |
|
596
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:1] | passed | 0.0586 seconds |
|
597
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:2] | passed | 0.05746 seconds |
|
598
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:3] | passed | 0.06237 seconds |
|
599
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:4] | passed | 0.06673 seconds |
|
600
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:5] | passed | 0.05891 seconds |
|
601
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:6] | passed | 0.06054 seconds |
|
602
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:7:1] | passed | 0.05892 seconds |
|
603
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:7:2] | passed | 0.05846 seconds |
|
604
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3:8:1] | passed | 0.06242 seconds |
|
605
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.05658 seconds |
|
606
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.06274 seconds |
|
607
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.05915 seconds |
|
608
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.05575 seconds |
|
609
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.06138 seconds |
|
610
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.06202 seconds |
|
611
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7] | passed | 0.06598 seconds |
|
612
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8] | passed | 0.08245 seconds |
|
613
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:9] | passed | 0.06185 seconds |
|
614
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:10:1] | passed | 0.0582 seconds |
|
615
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:10:2] | passed | 0.06027 seconds |
|
616
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:10:3] | passed | 0.06192 seconds |
|
617
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:11] | passed | 0.0602 seconds |
|
618
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:12] | passed | 0.06217 seconds |
|
619
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:13] | passed | 0.05941 seconds |
|
620
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:14] | passed | 0.05916 seconds |
|
621
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:15] | passed | 0.06088 seconds |
|
622
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:16] | passed | 0.06185 seconds |
|
623
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1:1:1] | passed | 0.06488 seconds |
|
624
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1:2:1] | passed | 0.06548 seconds |
|
625
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1:3:1] | passed | 0.06445 seconds |
|
626
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1:4:1] | passed | 0.06388 seconds |
|
627
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1] | passed | 0.05663 seconds |
|
628
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:2] | passed | 0.05954 seconds |
|
629
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:3] | passed | 0.06456 seconds |
|
630
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.06078 seconds |
|
631
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.0587 seconds |
|
632
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.06221 seconds |
|
633
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.06127 seconds |
|
634
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.06164 seconds |
|
635
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.05634 seconds |
|
636
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.06021 seconds |
|
637
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.06253 seconds |
|
638
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.0598 seconds |
|
639
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.06283 seconds |
|
640
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.08069 seconds |
|
641
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.0603 seconds |
|
642
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.05876 seconds |
|
643
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.05986 seconds |
|
644
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.05573 seconds |
|
645
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.05918 seconds |
|
646
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.05585 seconds |
|
647
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.05962 seconds |
|
648
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.06008 seconds |
|
649
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.06115 seconds |
|
650
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1:1] | passed | 0.06427 seconds |
|
651
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1:2] | passed | 0.06248 seconds |
|
652
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1:3] | passed | 0.06756 seconds |
|
653
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1] | passed | 0.05631 seconds |
|
654
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:2] | passed | 0.05782 seconds |
|
655
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.05646 seconds |
|
656
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.05537 seconds |
|
657
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:3] | passed | 0.05608 seconds |
|
658
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.05949 seconds |
|
659
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.05431 seconds |
|
660
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.05595 seconds |
|
661
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.06157 seconds |
|
662
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.07079 seconds |
|
663
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.05453 seconds |
|
664
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.05781 seconds |
|
665
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.05972 seconds |
|
666
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.06688 seconds |
|
667
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.06207 seconds |
|
668
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.07495 seconds |
|
669
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.05666 seconds |
|
670
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.05584 seconds |
|
671
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00594 seconds |
|
672
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.06182 seconds |
|
673
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.06736 seconds |
|
674
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.06054 seconds |
|
675
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.0597 seconds |
|
676
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.00696 seconds |
|
677
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.05522 seconds |
|
678
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.06002 seconds |
|
679
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.00559 seconds |
|
680
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.06113 seconds |
|
681
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.00793 seconds |
|
682
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.00914 seconds |
|
683
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01147 seconds |
|
684
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01089 seconds |
|
685
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.05855 seconds |
|
686
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.06127 seconds |
|
687
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.05936 seconds |
|
688
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.06274 seconds |
|
689
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.06674 seconds |
|
690
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.06486 seconds |
|
691
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.06509 seconds |
|
692
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.06471 seconds |
|
693
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.07499 seconds |
|
694
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.06119 seconds |
|
695
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.0147 seconds |
|
696
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.01404 seconds |
|
697
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.05808 seconds |
|
698
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.01294 seconds |
|
699
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5] | passed | 0.01209 seconds |
|
700
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.05701 seconds |
|
701
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:2] | passed | 0.06118 seconds |
|
702
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.0591 seconds |
|
703
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.0613 seconds |
|
704
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.01666 seconds |
|
705
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.05855 seconds |
|
706
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.07722 seconds |
|
707
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.08773 seconds |
|
708
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1:1] | passed | 0.05888 seconds |
|
709
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.06047 seconds |
|
710
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:3:1] | passed | 0.0639 seconds |
|
711
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1] | passed | 0.05941 seconds |
|
712
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.05797 seconds |
|
713
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1:1] | passed | 0.0583 seconds |
|
714
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:2:1] | passed | 0.06126 seconds |
|
715
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1] | passed | 0.06192 seconds |
|
716
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2] | passed | 0.05645 seconds |
|
717
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.01297 seconds |
|
718
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.01578 seconds |
|
719
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:3:1] | passed | 0.01316 seconds |
|
720
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:4:1] | passed | 0.01438 seconds |
|
721
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1:1] | passed | 0.07438 seconds |
|
722
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2:1] | passed | 0.01242 seconds |
|
723
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.09073 seconds |
|
724
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.006 seconds |
|
725
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.09288 seconds |
|
726
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.11289 seconds |
|
727
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.10629 seconds |
|
728
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.11506 seconds |
|
729
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.00615 seconds |
|
730
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.06011 seconds |
|
731
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.06446 seconds |
|
732
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.05984 seconds |
|
733
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.00555 seconds |
|
734
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.00535 seconds |
|
735
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.09098 seconds |
|
736
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.09737 seconds |
|
737
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.11929 seconds |
|
738
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.0052 seconds |
|
739
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.00516 seconds |
|
740
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.00636 seconds |
|
741
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.00471 seconds |
|
742
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.00842 seconds |
|
743
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.01062 seconds |
|
744
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.00752 seconds |
|
745
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.00499 seconds |
|
746
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.00487 seconds |
|
747
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.0571 seconds |
|
748
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.05619 seconds |
|
749
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.06336 seconds |
|
750
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.0628 seconds |
|
751
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.0054 seconds |
|
752
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00472 seconds |
|
753
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.00589 seconds |
|
754
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.00533 seconds |
|
755
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.06335 seconds |
|
756
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.06277 seconds |
|
757
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.06175 seconds |
|
758
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.0624 seconds |
|
759
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.063 seconds |
|
760
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.05726 seconds |
|
761
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.06292 seconds |
|
762
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.00569 seconds |
|
763
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.0056 seconds |
|
764
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00498 seconds |
|
765
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.00551 seconds |
|
766
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.0052 seconds |
|
767
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.06928 seconds |
|
768
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.06647 seconds |
|
769
|
+
./spec/models/spotlight/page_spec.rb[1:3:1] | passed | 0.06774 seconds |
|
770
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.06826 seconds |
|
771
|
+
./spec/models/spotlight/page_spec.rb[1:4:2] | passed | 0.06801 seconds |
|
772
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.06907 seconds |
|
773
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.12958 seconds |
|
774
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.13327 seconds |
|
775
|
+
./spec/models/spotlight/page_spec.rb[1:7:2] | passed | 0.13426 seconds |
|
776
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.14064 seconds |
|
777
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.15794 seconds |
|
778
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.13463 seconds |
|
779
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.14834 seconds |
|
780
|
+
./spec/models/spotlight/page_spec.rb[1:9:3:1] | passed | 0.12727 seconds |
|
781
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.07874 seconds |
|
782
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.08191 seconds |
|
783
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.06248 seconds |
|
784
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.06404 seconds |
|
785
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.06488 seconds |
|
786
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.0639 seconds |
|
787
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.06306 seconds |
|
788
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.06183 seconds |
|
789
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.0698 seconds |
|
790
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.06102 seconds |
|
791
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.06103 seconds |
|
792
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.06318 seconds |
|
793
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.06522 seconds |
|
794
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.00579 seconds |
|
795
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.33 seconds |
|
796
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.33 seconds |
|
797
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.0611 seconds |
|
798
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.06048 seconds |
|
799
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.06118 seconds |
|
800
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.0628 seconds |
|
801
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.06374 seconds |
|
802
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.06212 seconds |
|
803
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.06364 seconds |
|
804
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.06589 seconds |
|
805
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.11205 seconds |
|
806
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.1147 seconds |
|
807
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.10781 seconds |
|
808
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.12698 seconds |
|
809
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:2] | passed | 0.15179 seconds |
|
810
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:3] | passed | 0.12996 seconds |
|
811
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.00838 seconds |
|
812
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.00798 seconds |
|
813
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.00739 seconds |
|
814
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.00597 seconds |
|
815
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.10658 seconds |
|
816
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.48198 seconds |
|
817
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.08175 seconds |
|
818
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.07986 seconds |
|
819
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.08485 seconds |
|
820
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.08029 seconds |
|
821
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.07737 seconds |
|
822
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.0806 seconds |
|
823
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.08216 seconds |
|
824
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.1017 seconds |
|
825
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.08319 seconds |
|
826
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.0903 seconds |
|
827
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.08831 seconds |
|
828
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.0853 seconds |
|
829
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.07661 seconds |
|
830
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.07835 seconds |
|
831
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.07995 seconds |
|
832
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.08991 seconds |
|
833
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.08698 seconds |
|
834
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.07563 seconds |
|
835
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01137 seconds |
|
836
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01701 seconds |
|
837
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02213 seconds |
|
838
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.03295 seconds |
|
839
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.03254 seconds |
|
840
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.03471 seconds |
|
841
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.01437 seconds |
|
842
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.00602 seconds |
|
843
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.00572 seconds |
|
844
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.00508 seconds |
|
845
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 0.29123 seconds |
|
846
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.1353 seconds |
|
847
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.13542 seconds |
|
848
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.17036 seconds |
|
849
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.12048 seconds |
|
850
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.12416 seconds |
|
851
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.12721 seconds |
|
852
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 0.13007 seconds |
|
853
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.12432 seconds |
|
854
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.1199 seconds |
|
855
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.00726 seconds |
|
856
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.00614 seconds |
|
857
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.01112 seconds |
|
858
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.01818 seconds |
|
859
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01062 seconds |
|
860
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.01443 seconds |
|
861
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.07727 seconds |
|
862
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.21229 seconds |
|
863
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.07149 seconds |
|
864
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.50106 seconds |
|
865
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.07552 seconds |
|
866
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.07415 seconds |
|
867
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.0691 seconds |
|
868
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.0741 seconds |
|
869
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.06123 seconds |
|
870
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.06246 seconds |
|
871
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.0066 seconds |
|
872
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.17582 seconds |
|
873
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.07209 seconds |
|
874
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.08656 seconds |
|
875
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.06037 seconds |
|
876
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.06426 seconds |
|
877
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.09482 seconds |
|
878
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.09384 seconds |
|
879
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.06148 seconds |
|
880
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.07461 seconds |
|
881
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.00573 seconds |
|
882
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.0065 seconds |
|
883
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.00573 seconds |
|
884
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00544 seconds |
|
885
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00503 seconds |
|
886
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.0059 seconds |
|
887
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.06509 seconds |
|
888
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.0616 seconds |
|
889
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.0601 seconds |
|
890
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.00774 seconds |
|
891
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.00569 seconds |
|
892
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.00502 seconds |
|
893
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.06239 seconds |
|
894
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.06781 seconds |
|
895
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.0677 seconds |
|
896
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.06536 seconds |
|
897
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.06323 seconds |
|
898
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.06166 seconds |
|
899
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.06303 seconds |
|
900
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.07982 seconds |
|
901
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.06299 seconds |
|
902
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.06442 seconds |
|
903
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.00682 seconds |
|
904
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00532 seconds |
|
905
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.00515 seconds |
|
906
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00563 seconds |
|
907
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00499 seconds |
|
908
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.00481 seconds |
|
909
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.0056 seconds |
|
910
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00555 seconds |
|
911
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.00514 seconds |
|
912
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.00479 seconds |
|
913
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.00578 seconds |
|
914
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.00532 seconds |
|
915
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.00576 seconds |
|
916
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.08173 seconds |
|
917
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.07553 seconds |
|
918
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.09832 seconds |
|
919
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.07693 seconds |
|
920
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.07944 seconds |
|
921
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.07536 seconds |
|
922
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.0776 seconds |
|
923
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.07559 seconds |
|
924
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.08274 seconds |
|
925
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.07556 seconds |
|
926
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.07561 seconds |
|
927
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.07579 seconds |
|
928
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.18754 seconds |
|
929
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.19543 seconds |
|
930
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.18807 seconds |
|
931
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.19603 seconds |
|
932
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.22037 seconds |
|
933
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.18983 seconds |
|
934
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.21075 seconds |
|
935
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.22986 seconds |
|
936
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.19592 seconds |
|
937
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.20063 seconds |
|
938
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.25107 seconds |
|
939
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.22117 seconds |
|
940
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.24128 seconds |
|
941
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.25475 seconds |
|
942
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.24144 seconds |
|
943
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.22168 seconds |
|
944
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.19176 seconds |
|
945
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.24568 seconds |
|
946
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.2776 seconds |
|
947
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.24975 seconds |
|
948
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.25779 seconds |
|
949
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.2049 seconds |
|
950
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.19714 seconds |
|
951
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.24674 seconds |
|
952
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.21649 seconds |
|
953
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.19027 seconds |
|
954
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.21364 seconds |
|
955
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.24414 seconds |
|
956
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.01972 seconds |
|
957
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.02333 seconds |
|
958
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.01564 seconds |
|
959
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.01528 seconds |
|
960
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.01391 seconds |
|
961
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.01441 seconds |
|
962
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.01394 seconds |
|
963
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.06633 seconds |
|
964
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.1765 seconds |
|
965
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.17687 seconds |
|
966
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.00686 seconds |
|
967
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.00564 seconds |
|
968
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.0057 seconds |
|
969
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.00552 seconds |
|
970
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.01289 seconds |
|
971
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.01516 seconds |
|
972
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.01742 seconds |
|
973
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.01244 seconds |
|
974
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.01321 seconds |
|
975
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.1226 seconds |
|
976
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.06474 seconds |
|
977
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.06949 seconds |
|
978
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.06815 seconds |
|
979
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.06802 seconds |
|
980
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.06571 seconds |
|
981
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.06101 seconds |
|
982
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.01155 seconds |
|
983
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.14752 seconds |
|
984
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.0872 seconds |
|
985
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.09349 seconds |
|
986
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.08821 seconds |
|
987
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.11146 seconds |
|
988
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.10301 seconds |
|
989
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.08445 seconds |
|
990
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.09494 seconds |
|
991
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.08962 seconds |
|
992
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.07558 seconds |
|
993
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.08628 seconds |
|
994
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.08915 seconds |
|
995
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.07526 seconds |
|
996
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.08626 seconds |
|
997
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.08676 seconds |
|
998
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.06705 seconds |
|
999
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.06818 seconds |
|
1000
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.06814 seconds |
|
1001
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.06491 seconds |
|
1002
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.06025 seconds |
|
1003
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.11723 seconds |
|
1004
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.08133 seconds |
|
1005
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.06528 seconds |
|
1006
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.0887 seconds |
|
1007
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.09218 seconds |
|
1008
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.07404 seconds |
|
1009
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.07545 seconds |
|
1010
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01431 seconds |
|
1011
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00762 seconds |
|
1012
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.00853 seconds |
|
1013
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.13453 seconds |
|
1014
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 1.93 seconds |
|
1015
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03003 seconds |
|
1016
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.03105 seconds |
|
1017
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.18054 seconds |
|
1018
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.13338 seconds |
|
1019
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.12704 seconds |
|
1020
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.07079 seconds |
|
1021
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.00958 seconds |
|
1022
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.1435 seconds |
|
1023
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.54193 seconds |
|
1024
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.14684 seconds |
|
1025
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.14962 seconds |
|
1026
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.1537 seconds |
|
1027
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.14663 seconds |
|
1028
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.17926 seconds |
|
1029
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.14481 seconds |
|
1030
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:8] | passed | 0.14982 seconds |
|
1031
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.02607 seconds |
|
1032
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.02098 seconds |
|
1033
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.02892 seconds |
|
1034
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.44723 seconds |
|
1035
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.03016 seconds |
|
1036
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.03202 seconds |
|
1037
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.01913 seconds |
|
1038
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.28998 seconds |
|
1039
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.07103 seconds |
|
1040
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.05994 seconds |
|
1041
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.07806 seconds |
|
1042
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.06232 seconds |
|
1043
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.06554 seconds |
|
1044
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.06142 seconds |
|
1045
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.00698 seconds |
|
1046
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.3149 seconds |
|
1047
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.31166 seconds |
|
1048
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.33316 seconds |
|
1049
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.31077 seconds |
|
1050
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.30401 seconds |
|
1051
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.3046 seconds |
|
1052
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.3288 seconds |
|
1053
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.06402 seconds |
|
1054
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.07152 seconds |
|
1055
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.07396 seconds |
|
1056
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.2253 seconds |
|
1057
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.08041 seconds |
|
1058
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.11466 seconds |
|
1059
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.06472 seconds |
|
1060
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.08115 seconds |
|
1061
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 0.85791 seconds |
|
1062
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 1.25 seconds |
|
1063
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.17806 seconds |
|
1064
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.18296 seconds |
|
1065
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.18803 seconds |
|
1066
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.28646 seconds |
|
1067
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.18361 seconds |
|
1068
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.24939 seconds |
|
1069
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.25795 seconds |
|
1070
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.19512 seconds |
|
1071
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.22408 seconds |
|
1072
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02087 seconds |
|
1073
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01276 seconds |
|
1074
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00687 seconds |
|
1075
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.00727 seconds |
|
1076
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.21663 seconds |
|
1077
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.23885 seconds |
|
1078
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.06953 seconds |
|
1079
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.06162 seconds |
|
1080
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.01493 seconds |
|
1081
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.11774 seconds |
|
1082
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.0631 seconds |
|
1083
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.35656 seconds |
|
1084
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.22098 seconds |
|
1085
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.07549 seconds |
|
1086
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.02247 seconds |
|
1087
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.02177 seconds |
|
1088
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.02192 seconds |
|
1089
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.02604 seconds |
|
1090
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.04369 seconds |
|
1091
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02516 seconds |
|
1092
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.07225 seconds |
|
1093
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.22503 seconds |
|
1094
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.0201 seconds |
|
1095
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02162 seconds |
|
1096
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.03785 seconds |
|
1097
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.02738 seconds |
|
1098
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.02216 seconds |
|
1099
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.17395 seconds |
|
1100
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02104 seconds |
|
1101
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.02726 seconds |
|
1102
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.02324 seconds |
|
1103
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.03704 seconds |
|
1104
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.33454 seconds |
|
1105
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.06478 seconds |
|
1106
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.00763 seconds |
|
1107
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.00844 seconds |
|
1108
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.29174 seconds |
|
1109
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.08905 seconds |
|
1110
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.08712 seconds |
|
1111
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.15148 seconds |
|
1112
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.06995 seconds |
|
1113
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.07219 seconds |
|
1114
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.07683 seconds |
|
1115
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.07293 seconds |
|
1116
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.06981 seconds |
|
1117
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.12805 seconds |
|
1118
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.06967 seconds |
|
1119
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.13495 seconds |
|
1120
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.24112 seconds |
|
1121
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.1026 seconds |
|
1122
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.03678 seconds |
|
1123
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.02418 seconds |
|
1124
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.14859 seconds |
|
1125
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.0666 seconds |
|
1126
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.00851 seconds |
|
1127
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.06446 seconds |
|
1128
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.07474 seconds |
|
1129
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.07796 seconds |
|
1130
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.07402 seconds |
|
1131
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.07189 seconds |
|
1132
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01417 seconds |
|
1133
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.07252 seconds |
|
1134
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.52318 seconds |
|
1135
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.12782 seconds |
|
1136
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.12982 seconds |
|