blacklight-spotlight 2.0.0.rc2 → 2.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/spotlight/_translations.scss +27 -0
- data/app/controllers/concerns/spotlight/controller.rb +0 -1
- data/app/views/spotlight/exhibits/_languages.html.erb +1 -1
- data/app/views/spotlight/translations/_browse_categories.html.erb +6 -6
- data/app/views/spotlight/translations/_page.html.erb +4 -2
- data/app/views/spotlight/translations/_pages.html.erb +1 -1
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -0
- data/spec/examples.txt +1218 -1284
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b4f0f6dbd0bd4966843b75c7957cd1248253d17
|
4
|
+
data.tar.gz: 655962b5655214e40ef9482717eb8a72d56c7ab6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02d6c3250a046db0c177b911ed17625c785d5c5084d8507ce61280ad8f65f87d9b4cf75796c2b44acae13e30352f39094c6f0f8f87c4796223f2f52b0e560105
|
7
|
+
data.tar.gz: 573edbd26f9814c56b98bc3eb67e860b0a2112b5e4cb10296b957f23c46999caf7e84b90c4be320e78920e02892bc1e89f14547ef2e1c17729e5344d767dbd90
|
@@ -2,6 +2,18 @@
|
|
2
2
|
.glyphicon-ok {
|
3
3
|
color: $translation-available-color;
|
4
4
|
}
|
5
|
+
|
6
|
+
.browse-category-title {
|
7
|
+
margin-bottom: $padding-base-vertical;
|
8
|
+
|
9
|
+
label {
|
10
|
+
font-weight: normal;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
.browse-category-description {
|
15
|
+
margin-bottom: $padding-large-vertical * 2;
|
16
|
+
}
|
5
17
|
}
|
6
18
|
|
7
19
|
.translation-subheading {
|
@@ -45,3 +57,18 @@
|
|
45
57
|
.default-page-outdated {
|
46
58
|
font-weight: 700;
|
47
59
|
}
|
60
|
+
|
61
|
+
.new-translated-page {
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
|
65
|
+
.browse-translations-header {
|
66
|
+
border-bottom: 1px solid $navbar-default-border;
|
67
|
+
color: $gray-light;
|
68
|
+
display: block;
|
69
|
+
font-size: $font-size-h4;
|
70
|
+
font-weight: bold;
|
71
|
+
margin-bottom: $padding-large-vertical * 2;
|
72
|
+
margin-top: $padding-large-vertical;
|
73
|
+
padding-bottom: 3px;
|
74
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div role="tabpanel" class="tab-pane <%= 'active' if @tab == 'language' %>" id="language">
|
2
2
|
<p class="instructions"><%= t :'spotlight.exhibits.languages.selection_instructions' %></p>
|
3
3
|
|
4
|
-
<%= bootstrap_form_for [current_exhibit, Spotlight::Language.new], layout: :horizontal do |f| %>
|
4
|
+
<%= bootstrap_form_for [current_exhibit, Spotlight::Language.new], layout: :horizontal, label_col: "col-sm-3", control_col: "col-sm-9" do |f| %>
|
5
5
|
<div class='col-md-6'>
|
6
6
|
<%= f.select('locale', add_exhibit_language_dropdown_options, prompt: t('.selection_prompt')) %>
|
7
7
|
<%= hidden_field_tag :tab, 'language' %>
|
@@ -5,14 +5,14 @@
|
|
5
5
|
<%= hidden_field_tag :tab, 'browse' %>
|
6
6
|
<div class="row">
|
7
7
|
<div class="col-xs-4 text-right">
|
8
|
-
<
|
8
|
+
<span class="browse-translations-header">
|
9
9
|
<%= t :'spotlight.exhibits.translations.browse_categories.default_language_column_label' %>
|
10
|
-
</
|
10
|
+
</span>
|
11
11
|
</div>
|
12
12
|
<div class="col-xs-7">
|
13
|
-
<
|
13
|
+
<span class="browse-translations-header">
|
14
14
|
<%= t :'spotlight.exhibits.translations.browse_categories.translation_column_label', language: t("locales.#{@language}") %>
|
15
|
-
</
|
15
|
+
</span>
|
16
16
|
</div>
|
17
17
|
</div>
|
18
18
|
|
@@ -21,7 +21,7 @@
|
|
21
21
|
<%= f.fields_for :translations, title_translation do |translation_fields| %>
|
22
22
|
<%= translation_fields.hidden_field :key %>
|
23
23
|
<%= translation_fields.hidden_field :locale %>
|
24
|
-
<div data-translation-progress-item="true" class="form-group">
|
24
|
+
<div data-translation-progress-item="true" class="form-group browse-category-title">
|
25
25
|
<%= translation_fields.label :value, search[:title], class: 'control-label col-xs-4' %>
|
26
26
|
<div class="col-xs-7">
|
27
27
|
<%= translation_fields.text_field_without_bootstrap :value, class: 'form-control' %>
|
@@ -35,7 +35,7 @@
|
|
35
35
|
<% end %>
|
36
36
|
|
37
37
|
<% description_translation = Translation.find_or_initialize_by(exhibit: current_exhibit, key: "#{search.slug}.long_description", locale: @language) %>
|
38
|
-
<div data-translation-progress-item="true" class="form-group">
|
38
|
+
<div data-translation-progress-item="true" class="form-group browse-category-description">
|
39
39
|
<div class="col-xs-7 col-xs-offset-4">
|
40
40
|
<%= f.fields_for :translations, description_translation do |translation_fields| %>
|
41
41
|
<%= button_tag 'type' => 'button', class: 'btn btn-text collapsed tanslation-description-toggle', 'data-toggle': 'collapse', 'data-target': "#browse_category_description_#{search.id}", 'aria-expanded': 'false', 'aria-controls': "#browse_category_description_#{search.id}" do %>
|
@@ -21,8 +21,10 @@
|
|
21
21
|
<% end %>
|
22
22
|
</p>
|
23
23
|
<% else %>
|
24
|
-
|
25
|
-
|
24
|
+
<span class="new-translated-page">
|
25
|
+
<%= t('spotlight.exhibits.translations.pages.no_translated_page') %>
|
26
|
+
<%= link_to(t('spotlight.exhibits.translations.pages.new'), polymorphic_path([:clone, current_exhibit, page], language: @language)) %>
|
27
|
+
<span>
|
26
28
|
<% end %>
|
27
29
|
</td>
|
28
30
|
<td class="text-center">
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div role="tabpanel" class="tab-pane <%= 'active' if @tab == 'pages' %>" id="pages">
|
2
|
-
<p class="
|
2
|
+
<p class="instructions"><%= t('spotlight.exhibits.translations.pages.help_html') %></p>
|
3
3
|
|
4
4
|
<%= bootstrap_form_for @exhibit, url: polymorphic_path([:update_all, @exhibit, :pages]), layout: :horizontal, control_col: 'col-sm-10', html: {:'data-form-observer' => true} do |f| %>
|
5
5
|
<div class="translation-home-page-settings">
|
data/lib/spotlight/version.rb
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
describe Spotlight::AboutPagesController, type: :controller, versioning: true do
|
2
2
|
routes { Spotlight::Engine.routes }
|
3
3
|
let(:valid_attributes) { { 'title' => 'MyString', thumbnail: { iiif_url: '' } } }
|
4
|
+
after do
|
5
|
+
I18n.locale = I18n.default_locale
|
6
|
+
end
|
4
7
|
|
5
8
|
describe 'when not logged in' do
|
6
9
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
data/spec/examples.txt
CHANGED
@@ -1,1288 +1,1222 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
--------------------------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
-
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.
|
4
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
5
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
6
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
7
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.
|
8
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
9
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
10
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.
|
11
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.
|
12
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.
|
13
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
14
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.
|
15
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.
|
16
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.
|
17
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.
|
18
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.
|
19
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.
|
20
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.
|
21
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.
|
22
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.
|
23
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.
|
24
|
-
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.
|
25
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.
|
26
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.
|
27
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.
|
28
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.
|
29
|
-
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.
|
30
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.
|
31
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.
|
32
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.
|
33
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.
|
34
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.
|
35
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.
|
36
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.
|
37
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.
|
38
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.
|
39
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.
|
40
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.
|
41
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.
|
42
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.
|
43
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.
|
44
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.
|
45
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.
|
58
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.
|
63
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.
|
74
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.
|
75
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.
|
76
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.
|
77
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.
|
78
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.
|
79
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.
|
80
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.
|
81
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.
|
82
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.
|
83
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.
|
84
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.
|
85
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.
|
86
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.
|
87
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.
|
88
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.
|
89
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.
|
90
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.
|
91
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.
|
92
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.
|
93
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.
|
94
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.
|
95
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.
|
96
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
97
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
98
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.
|
99
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.
|
100
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.
|
101
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.
|
102
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.
|
103
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.
|
104
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.
|
105
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.
|
106
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.
|
107
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.
|
108
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.
|
109
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.
|
110
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.
|
111
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.
|
112
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.
|
113
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.
|
114
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.
|
115
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.
|
116
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.
|
117
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.
|
118
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.
|
119
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.
|
120
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.
|
121
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.
|
122
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.
|
123
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.
|
127
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.
|
128
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.
|
129
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.
|
130
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] |
|
131
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.
|
132
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.
|
133
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.
|
134
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.
|
135
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.
|
136
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.
|
137
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
138
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.
|
139
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
140
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.
|
141
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.
|
142
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.
|
143
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.
|
144
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.
|
145
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.
|
146
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.
|
147
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.
|
148
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.
|
149
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.
|
150
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.
|
151
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.
|
152
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.
|
153
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.
|
154
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.
|
155
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.
|
156
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.
|
157
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.
|
158
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.
|
159
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.
|
160
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.
|
161
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.
|
162
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.
|
163
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.
|
164
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.
|
165
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.
|
166
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.
|
167
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.
|
168
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.
|
169
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.
|
170
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.
|
171
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.
|
172
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.
|
173
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.
|
174
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.
|
175
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.
|
176
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.
|
177
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.
|
178
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.
|
179
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.
|
180
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.
|
181
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.
|
182
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.
|
183
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.
|
184
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.
|
185
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.
|
186
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
187
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.
|
188
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
189
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.
|
190
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.
|
191
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.
|
192
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.
|
193
|
-
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.
|
194
|
-
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.
|
195
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.
|
196
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.
|
197
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.
|
198
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.
|
199
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.
|
200
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.
|
201
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.
|
202
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.
|
203
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.
|
204
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.
|
205
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.
|
206
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.
|
207
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.
|
208
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.
|
209
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.
|
210
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.
|
211
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.
|
212
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.
|
213
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.
|
214
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.
|
215
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.
|
216
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.
|
217
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.
|
218
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.
|
219
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.
|
220
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.
|
221
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
222
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
223
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.
|
224
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.
|
225
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.
|
226
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.
|
227
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.
|
228
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.
|
229
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.
|
230
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.
|
231
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.
|
232
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.
|
233
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.
|
234
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.
|
235
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.
|
236
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.
|
237
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.
|
238
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.
|
239
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.
|
240
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.
|
241
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.
|
242
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.
|
243
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.
|
244
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.
|
245
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.
|
246
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] |
|
247
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.
|
248
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.
|
249
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
250
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.
|
251
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.
|
252
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.
|
253
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.
|
254
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.
|
255
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.
|
256
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.
|
257
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.
|
258
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.
|
259
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.
|
260
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.
|
261
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.
|
262
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.
|
263
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.
|
264
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.
|
265
|
-
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.
|
266
|
-
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.
|
267
|
-
./spec/features/about_page_spec.rb[1:1:1] | passed |
|
268
|
-
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.
|
269
|
-
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.
|
270
|
-
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.
|
271
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed |
|
272
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.
|
273
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.
|
274
|
-
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed |
|
275
|
-
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.
|
276
|
-
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed |
|
277
|
-
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.
|
278
|
-
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.
|
279
|
-
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.
|
280
|
-
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.
|
281
|
-
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.
|
282
|
-
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.
|
283
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 2.
|
284
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed |
|
285
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed |
|
286
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed |
|
287
|
-
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.
|
288
|
-
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.
|
289
|
-
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed |
|
290
|
-
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.
|
291
|
-
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.
|
292
|
-
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.
|
293
|
-
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.
|
294
|
-
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.
|
295
|
-
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.
|
296
|
-
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.
|
297
|
-
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.
|
298
|
-
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.
|
299
|
-
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.
|
300
|
-
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.
|
301
|
-
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.
|
302
|
-
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.
|
303
|
-
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.
|
304
|
-
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.
|
305
|
-
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.
|
306
|
-
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.
|
307
|
-
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.
|
308
|
-
./spec/features/catalog_spec.rb[1:2] | passed | 0.
|
309
|
-
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.
|
310
|
-
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.
|
311
|
-
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.
|
312
|
-
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.
|
313
|
-
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.
|
314
|
-
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.
|
315
|
-
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.
|
316
|
-
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.
|
317
|
-
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.
|
318
|
-
./spec/features/dashboard_spec.rb[1:1] | passed | 0.
|
319
|
-
./spec/features/dashboard_spec.rb[1:2] | passed |
|
320
|
-
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.
|
321
|
-
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.
|
322
|
-
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.
|
323
|
-
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.
|
324
|
-
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.
|
325
|
-
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.
|
326
|
-
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.
|
327
|
-
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.
|
328
|
-
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.
|
329
|
-
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.
|
330
|
-
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.
|
331
|
-
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.
|
332
|
-
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed |
|
333
|
-
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.
|
334
|
-
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.
|
335
|
-
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.
|
336
|
-
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.
|
337
|
-
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 1.
|
338
|
-
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.
|
339
|
-
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed |
|
340
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.
|
341
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.
|
342
|
-
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.
|
343
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.
|
344
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed |
|
345
|
-
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.
|
346
|
-
./spec/features/
|
347
|
-
./spec/features/
|
348
|
-
./spec/features/
|
349
|
-
./spec/features/
|
350
|
-
./spec/features/
|
351
|
-
./spec/features/
|
352
|
-
./spec/features/
|
353
|
-
./spec/features/
|
354
|
-
./spec/features/
|
355
|
-
./spec/features/
|
356
|
-
./spec/features/
|
357
|
-
./spec/features/
|
358
|
-
./spec/features/
|
359
|
-
./spec/features/
|
360
|
-
./spec/features/
|
361
|
-
./spec/features/
|
362
|
-
./spec/features/
|
363
|
-
./spec/features/
|
364
|
-
./spec/features/
|
365
|
-
./spec/features/
|
366
|
-
./spec/features/
|
367
|
-
./spec/features/
|
368
|
-
./spec/features/
|
369
|
-
./spec/features/
|
370
|
-
./spec/features/
|
371
|
-
./spec/features/
|
372
|
-
./spec/features/
|
373
|
-
./spec/features/
|
374
|
-
./spec/features/
|
375
|
-
./spec/features/
|
376
|
-
./spec/features/
|
377
|
-
./spec/features/
|
378
|
-
./spec/features/
|
379
|
-
./spec/features/
|
380
|
-
./spec/features/
|
381
|
-
./spec/features/
|
382
|
-
./spec/features/
|
383
|
-
./spec/features/
|
384
|
-
./spec/features/
|
385
|
-
./spec/features/
|
386
|
-
./spec/features/
|
387
|
-
./spec/features/
|
388
|
-
./spec/features/home_page_spec.rb[1:1] | passed | 0.36497 seconds |
|
389
|
-
./spec/features/home_page_spec.rb[1:2] | passed | 0.77532 seconds |
|
390
|
-
./spec/features/home_page_spec.rb[1:3] | passed | 0.49635 seconds |
|
391
|
-
./spec/features/home_page_spec.rb[1:4] | passed | 0.27117 seconds |
|
392
|
-
./spec/features/home_page_spec.rb[1:5] | passed | 0.25711 seconds |
|
393
|
-
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 1.43 seconds |
|
394
|
-
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.18097 seconds |
|
395
|
-
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.03 seconds |
|
396
|
-
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.17 seconds |
|
397
|
-
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.24258 seconds |
|
398
|
-
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.21728 seconds |
|
399
|
-
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.64823 seconds |
|
400
|
-
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.45 seconds |
|
401
|
-
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 1.21 seconds |
|
402
|
-
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 2.34 seconds |
|
403
|
-
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 3.21 seconds |
|
404
|
-
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.97 seconds |
|
405
|
-
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 2.95 seconds |
|
406
|
-
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 3.29 seconds |
|
407
|
-
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.86 seconds |
|
408
|
-
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 3.31 seconds |
|
409
|
-
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 1.3 seconds |
|
410
|
-
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 2.87 seconds |
|
411
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.42 seconds |
|
412
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.42 seconds |
|
413
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.78 seconds |
|
414
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.71 seconds |
|
415
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.12 seconds |
|
416
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.83 seconds |
|
417
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | failed | 1.88 seconds |
|
418
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.99002 seconds |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.09855 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.47094 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.07367 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.53987 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.13882 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.25122 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.16387 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.31918 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.12453 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.13201 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.19455 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.17455 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.18553 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.12241 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.14942 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.17929 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.15086 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.13755 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.1931 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.03212 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.04689 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.03246 seconds |
|
25
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.08478 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.07035 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.10407 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.14134 seconds |
|
29
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.06889 seconds |
|
30
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.06828 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.09218 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.09724 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.112 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.0926 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.10447 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.09578 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.1392 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.11795 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.14386 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.11661 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.11215 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.38019 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01342 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.01718 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.011 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.07388 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.07546 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.26695 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.11478 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.14847 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.16185 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.09672 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.11165 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.32911 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.09045 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.13427 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.11868 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.48853 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.10192 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.10992 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.08457 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.10237 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.08159 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.08248 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.14921 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.1248 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.12726 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.25356 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.22442 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.21045 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.12194 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.11302 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.12435 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.0755 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.07875 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.08949 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.11217 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.10497 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.1379 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.12292 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01214 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01246 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.07679 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.08508 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.07116 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.01138 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.01096 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01239 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.06683 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.07023 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.06596 seconds |
|
92
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.08633 seconds |
|
93
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.02574 seconds |
|
94
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.63575 seconds |
|
95
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.07771 seconds |
|
96
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.10866 seconds |
|
97
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.10694 seconds |
|
98
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.09812 seconds |
|
99
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.1023 seconds |
|
100
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.2847 seconds |
|
101
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.12347 seconds |
|
102
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.12906 seconds |
|
103
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.0789 seconds |
|
104
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.11139 seconds |
|
105
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.1103 seconds |
|
106
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.12826 seconds |
|
107
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.10623 seconds |
|
108
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.10548 seconds |
|
109
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.12153 seconds |
|
110
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.09279 seconds |
|
111
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.09857 seconds |
|
112
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.0986 seconds |
|
113
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.10416 seconds |
|
114
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.08808 seconds |
|
115
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.10059 seconds |
|
116
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.0982 seconds |
|
117
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.14268 seconds |
|
118
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.10769 seconds |
|
119
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.08748 seconds |
|
120
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.10125 seconds |
|
121
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.07606 seconds |
|
122
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.10171 seconds |
|
123
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.05172 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.08467 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.084 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.08127 seconds |
|
127
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.07198 seconds |
|
128
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.07034 seconds |
|
129
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.048 seconds |
|
130
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.1193 seconds |
|
131
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.09344 seconds |
|
132
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.19355 seconds |
|
133
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.10474 seconds |
|
134
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.09957 seconds |
|
135
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.0977 seconds |
|
136
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.11788 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.09924 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.17173 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.20301 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.13423 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.16673 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.13152 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.15479 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.17422 seconds |
|
145
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.12393 seconds |
|
146
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.12306 seconds |
|
147
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.12295 seconds |
|
148
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.10766 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.1055 seconds |
|
150
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.12276 seconds |
|
151
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.13714 seconds |
|
152
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.13532 seconds |
|
153
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.11788 seconds |
|
154
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.12273 seconds |
|
155
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.16316 seconds |
|
156
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.13968 seconds |
|
157
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.12851 seconds |
|
158
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.14424 seconds |
|
159
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.03557 seconds |
|
160
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.03981 seconds |
|
161
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.04241 seconds |
|
162
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.04348 seconds |
|
163
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.06921 seconds |
|
164
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.09973 seconds |
|
165
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.09143 seconds |
|
166
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.07825 seconds |
|
167
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.09404 seconds |
|
168
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.11677 seconds |
|
169
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.11844 seconds |
|
170
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.17853 seconds |
|
171
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.13685 seconds |
|
172
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.12988 seconds |
|
173
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.09723 seconds |
|
174
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.11064 seconds |
|
175
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.1903 seconds |
|
176
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.11326 seconds |
|
177
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.2325 seconds |
|
178
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.17663 seconds |
|
179
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.14339 seconds |
|
180
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.08268 seconds |
|
181
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.11322 seconds |
|
182
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.09268 seconds |
|
183
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.10623 seconds |
|
184
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.07634 seconds |
|
185
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.09664 seconds |
|
186
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.08617 seconds |
|
187
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.08092 seconds |
|
188
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.06542 seconds |
|
189
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.06902 seconds |
|
190
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.10586 seconds |
|
191
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.10733 seconds |
|
192
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.10405 seconds |
|
193
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.12222 seconds |
|
194
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.1065 seconds |
|
195
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.07368 seconds |
|
196
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.09116 seconds |
|
197
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.08619 seconds |
|
198
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.08065 seconds |
|
199
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.06798 seconds |
|
200
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.10502 seconds |
|
201
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.11104 seconds |
|
202
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.10555 seconds |
|
203
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.07055 seconds |
|
204
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.07064 seconds |
|
205
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.07046 seconds |
|
206
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.06885 seconds |
|
207
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.10766 seconds |
|
208
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.10056 seconds |
|
209
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.08844 seconds |
|
210
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.08722 seconds |
|
211
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.08735 seconds |
|
212
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.0876 seconds |
|
213
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.10731 seconds |
|
214
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.10074 seconds |
|
215
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.43406 seconds |
|
216
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.09576 seconds |
|
217
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.09042 seconds |
|
218
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.08866 seconds |
|
219
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.0943 seconds |
|
220
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.09468 seconds |
|
221
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.08359 seconds |
|
222
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.06804 seconds |
|
223
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.07111 seconds |
|
224
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.11687 seconds |
|
225
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.09903 seconds |
|
226
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.10805 seconds |
|
227
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.1026 seconds |
|
228
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.10229 seconds |
|
229
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.10188 seconds |
|
230
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.07818 seconds |
|
231
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.08174 seconds |
|
232
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.09788 seconds |
|
233
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.11737 seconds |
|
234
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.14823 seconds |
|
235
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.14021 seconds |
|
236
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.12766 seconds |
|
237
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.11425 seconds |
|
238
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.11207 seconds |
|
239
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.10348 seconds |
|
240
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.10627 seconds |
|
241
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.14048 seconds |
|
242
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.0293 seconds |
|
243
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.0459 seconds |
|
244
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.04644 seconds |
|
245
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.15597 seconds |
|
246
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.09299 seconds |
|
247
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.08441 seconds |
|
248
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.10223 seconds |
|
249
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.08 seconds |
|
250
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.09729 seconds |
|
251
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.09925 seconds |
|
252
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.10489 seconds |
|
253
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.08802 seconds |
|
254
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.13392 seconds |
|
255
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.10051 seconds |
|
256
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.11626 seconds |
|
257
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.07122 seconds |
|
258
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.10054 seconds |
|
259
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.07102 seconds |
|
260
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.16531 seconds |
|
261
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.19564 seconds |
|
262
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.02379 seconds |
|
263
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.14447 seconds |
|
264
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.19949 seconds |
|
265
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.10748 seconds |
|
266
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.09521 seconds |
|
267
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 1.37 seconds |
|
268
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.45075 seconds |
|
269
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.70779 seconds |
|
270
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.98146 seconds |
|
271
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 3.45 seconds |
|
272
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.21048 seconds |
|
273
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.67218 seconds |
|
274
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 2.09 seconds |
|
275
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.55671 seconds |
|
276
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.37318 seconds |
|
277
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.11697 seconds |
|
278
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.37564 seconds |
|
279
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.13538 seconds |
|
280
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.12611 seconds |
|
281
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.1315 seconds |
|
282
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.97679 seconds |
|
283
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 2.11 seconds |
|
284
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 2.73 seconds |
|
285
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.5 seconds |
|
286
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.82944 seconds |
|
287
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.2588 seconds |
|
288
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.18 seconds |
|
289
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.82302 seconds |
|
290
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.16443 seconds |
|
291
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.25748 seconds |
|
292
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.24727 seconds |
|
293
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.24485 seconds |
|
294
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.32151 seconds |
|
295
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.11415 seconds |
|
296
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.13422 seconds |
|
297
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.14468 seconds |
|
298
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.13734 seconds |
|
299
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.16107 seconds |
|
300
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.1418 seconds |
|
301
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.16353 seconds |
|
302
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.72912 seconds |
|
303
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.15284 seconds |
|
304
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.28224 seconds |
|
305
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.35551 seconds |
|
306
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.52884 seconds |
|
307
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.99177 seconds |
|
308
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.11486 seconds |
|
309
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.06782 seconds |
|
310
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.14024 seconds |
|
311
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.7873 seconds |
|
312
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.1215 seconds |
|
313
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.12279 seconds |
|
314
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.96524 seconds |
|
315
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.21878 seconds |
|
316
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.24119 seconds |
|
317
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.26084 seconds |
|
318
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.21142 seconds |
|
319
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.20308 seconds |
|
320
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.28068 seconds |
|
321
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.17702 seconds |
|
322
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.13229 seconds |
|
323
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.14751 seconds |
|
324
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.27825 seconds |
|
325
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.15042 seconds |
|
326
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.28846 seconds |
|
327
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.54785 seconds |
|
328
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.28038 seconds |
|
329
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.33034 seconds |
|
330
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.0727 seconds |
|
331
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.26119 seconds |
|
332
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 1.49 seconds |
|
333
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.1748 seconds |
|
334
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.11912 seconds |
|
335
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.26538 seconds |
|
336
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.13 seconds |
|
337
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 1.23 seconds |
|
338
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.79104 seconds |
|
339
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.84233 seconds |
|
340
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.81249 seconds |
|
341
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.16792 seconds |
|
342
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.41558 seconds |
|
343
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.40847 seconds |
|
344
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 0.90925 seconds |
|
345
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.12862 seconds |
|
346
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.17642 seconds |
|
347
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.21919 seconds |
|
348
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.12762 seconds |
|
349
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.2239 seconds |
|
350
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.1551 seconds |
|
351
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.1593 seconds |
|
352
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.19478 seconds |
|
353
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.37688 seconds |
|
354
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.3039 seconds |
|
355
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.22509 seconds |
|
356
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.61 seconds |
|
357
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.30045 seconds |
|
358
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 6.55 seconds |
|
359
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.76917 seconds |
|
360
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.18584 seconds |
|
361
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.14356 seconds |
|
362
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 1.11 seconds |
|
363
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.11559 seconds |
|
364
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.13 seconds |
|
365
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.03 seconds |
|
366
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.17962 seconds |
|
367
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.16886 seconds |
|
368
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.49268 seconds |
|
369
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.37 seconds |
|
370
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 0.92731 seconds |
|
371
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.8 seconds |
|
372
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 3.05 seconds |
|
373
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.86 seconds |
|
374
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 2.94 seconds |
|
375
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 2.92 seconds |
|
376
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.81 seconds |
|
377
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 2.86 seconds |
|
378
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 1.04 seconds |
|
379
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 2.78 seconds |
|
380
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.2 seconds |
|
381
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.37 seconds |
|
382
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.73 seconds |
|
383
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.37 seconds |
|
384
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.11 seconds |
|
385
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.77 seconds |
|
386
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 1.67 seconds |
|
387
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.82821 seconds |
|
419
388
|
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.54 seconds |
|
420
|
-
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.
|
421
|
-
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed |
|
422
|
-
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 1.
|
423
|
-
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed |
|
424
|
-
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.
|
425
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed |
|
426
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.
|
427
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.
|
428
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed |
|
429
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed |
|
430
|
-
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed |
|
431
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.
|
432
|
-
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed |
|
433
|
-
./spec/features/javascript/
|
434
|
-
./spec/features/javascript/
|
435
|
-
./spec/features/javascript/
|
436
|
-
./spec/features/javascript/
|
437
|
-
./spec/features/javascript/
|
438
|
-
./spec/features/javascript/
|
439
|
-
./spec/features/javascript/
|
440
|
-
./spec/features/javascript/
|
441
|
-
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 0.97579 seconds |
|
442
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 7.72 seconds |
|
443
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 1.21 seconds |
|
389
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.48 seconds |
|
390
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 1.94 seconds |
|
391
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 1.05 seconds |
|
392
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.78 seconds |
|
393
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.13 seconds |
|
394
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 0.99337 seconds |
|
395
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.02 seconds |
|
396
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.97352 seconds |
|
397
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.64856 seconds |
|
398
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 1.34 seconds |
|
399
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 0.95827 seconds |
|
400
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.40422 seconds |
|
401
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 0.97412 seconds |
|
402
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.42356 seconds |
|
403
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.48874 seconds |
|
404
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.5 seconds |
|
405
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.51 seconds |
|
406
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.09 seconds |
|
407
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 1.3 seconds |
|
408
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 1.05 seconds |
|
409
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 0.91491 seconds |
|
444
410
|
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 1.22 seconds |
|
445
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 1.
|
446
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 0.
|
447
|
-
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 0.
|
448
|
-
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.
|
449
|
-
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.
|
450
|
-
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.
|
451
|
-
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.
|
452
|
-
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.
|
453
|
-
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.
|
454
|
-
./spec/features/main_navigation_spec.rb[1:4] | passed |
|
455
|
-
./spec/features/main_navigation_spec.rb[1:5] | passed |
|
456
|
-
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.
|
457
|
-
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.
|
458
|
-
./spec/features/report_a_problem_spec.rb[1:1] | passed |
|
459
|
-
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.
|
460
|
-
./spec/features/report_a_problem_spec.rb[1:2:2] | passed |
|
461
|
-
./spec/features/report_a_problem_spec.rb[1:2:3] | passed |
|
462
|
-
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.
|
463
|
-
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.
|
464
|
-
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.
|
465
|
-
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.
|
466
|
-
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.
|
467
|
-
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.
|
468
|
-
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.
|
469
|
-
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.
|
470
|
-
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.
|
471
|
-
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.
|
472
|
-
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.
|
473
|
-
./spec/features/slideshow_spec.rb[1:1] | passed |
|
474
|
-
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.
|
475
|
-
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.
|
476
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.
|
477
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.
|
478
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.
|
479
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.
|
480
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.
|
481
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.
|
482
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.
|
483
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.
|
484
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.
|
485
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.
|
486
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.
|
487
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.
|
488
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.
|
489
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.
|
490
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.
|
491
|
-
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.
|
492
|
-
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.
|
493
|
-
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.
|
494
|
-
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.
|
495
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.
|
496
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.
|
497
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.
|
498
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.
|
499
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.
|
500
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.
|
501
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.
|
502
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.
|
503
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.
|
504
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.
|
505
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.
|
506
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.
|
507
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.
|
508
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.
|
509
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.
|
510
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.
|
511
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.
|
512
|
-
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.
|
513
|
-
./spec/helpers/spotlight/
|
514
|
-
./spec/helpers/spotlight/
|
515
|
-
./spec/helpers/spotlight/
|
516
|
-
./spec/helpers/spotlight/
|
517
|
-
./spec/helpers/spotlight/
|
518
|
-
./spec/helpers/spotlight/
|
519
|
-
./spec/helpers/spotlight/
|
520
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:
|
521
|
-
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:
|
522
|
-
./spec/helpers/spotlight/
|
523
|
-
./spec/helpers/spotlight/
|
524
|
-
./spec/helpers/spotlight/
|
525
|
-
./spec/helpers/spotlight/
|
526
|
-
./spec/helpers/spotlight/
|
527
|
-
./spec/helpers/spotlight/
|
528
|
-
./spec/helpers/spotlight/
|
529
|
-
./spec/helpers/spotlight/
|
530
|
-
./spec/helpers/spotlight/
|
531
|
-
./spec/helpers/spotlight/
|
532
|
-
./spec/helpers/spotlight/
|
533
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1]
|
534
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2]
|
535
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
536
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:
|
537
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:
|
538
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:3
|
539
|
-
./spec/helpers/spotlight/pages_helper_spec.rb[1:
|
540
|
-
./spec/helpers/spotlight/
|
541
|
-
./spec/helpers/spotlight/
|
542
|
-
./spec/helpers/spotlight/
|
543
|
-
./spec/helpers/spotlight/
|
544
|
-
./spec/helpers/spotlight/
|
545
|
-
./spec/helpers/spotlight/
|
546
|
-
./spec/helpers/spotlight/
|
547
|
-
./spec/helpers/spotlight/
|
548
|
-
./spec/helpers/spotlight/
|
549
|
-
./spec/helpers/spotlight/
|
550
|
-
./spec/
|
551
|
-
./spec/
|
552
|
-
./spec/
|
553
|
-
./spec/
|
554
|
-
./spec/
|
555
|
-
./spec/
|
556
|
-
./spec/
|
557
|
-
./spec/
|
558
|
-
./spec/
|
559
|
-
./spec/
|
560
|
-
./spec/
|
561
|
-
./spec/jobs/spotlight/
|
562
|
-
./spec/
|
563
|
-
./spec/
|
564
|
-
./spec/
|
565
|
-
./spec/
|
566
|
-
./spec/
|
567
|
-
./spec/
|
568
|
-
./spec/
|
569
|
-
./spec/
|
570
|
-
./spec/
|
571
|
-
./spec/
|
572
|
-
./spec/
|
573
|
-
./spec/lib/
|
574
|
-
./spec/lib/
|
575
|
-
./spec/lib/
|
576
|
-
./spec/lib/
|
577
|
-
./spec/lib/
|
578
|
-
./spec/lib/
|
579
|
-
./spec/lib/
|
580
|
-
./spec/
|
581
|
-
./spec/
|
582
|
-
./spec/
|
583
|
-
./spec/
|
584
|
-
./spec/
|
585
|
-
./spec/
|
586
|
-
./spec/
|
587
|
-
./spec/
|
588
|
-
./spec/
|
589
|
-
./spec/
|
590
|
-
./spec/
|
591
|
-
./spec/
|
592
|
-
./spec/
|
593
|
-
./spec/
|
594
|
-
./spec/
|
595
|
-
./spec/
|
596
|
-
./spec/
|
597
|
-
./spec/
|
598
|
-
./spec/
|
599
|
-
./spec/
|
600
|
-
./spec/
|
601
|
-
./spec/models/
|
602
|
-
./spec/models/
|
603
|
-
./spec/models/
|
604
|
-
./spec/models/
|
605
|
-
./spec/models/
|
606
|
-
./spec/models/
|
607
|
-
./spec/models/
|
608
|
-
./spec/models/
|
609
|
-
./spec/models/
|
610
|
-
./spec/models/
|
611
|
-
./spec/models/
|
612
|
-
./spec/models/
|
613
|
-
./spec/models/
|
614
|
-
./spec/models/
|
615
|
-
./spec/models/
|
616
|
-
./spec/models/
|
617
|
-
./spec/models/solr_document_spec.rb[1:
|
618
|
-
./spec/models/solr_document_spec.rb[1:
|
619
|
-
./spec/models/solr_document_spec.rb[1:
|
620
|
-
./spec/models/solr_document_spec.rb[1:
|
621
|
-
./spec/models/solr_document_spec.rb[1:
|
622
|
-
./spec/models/solr_document_spec.rb[1:
|
623
|
-
./spec/models/solr_document_spec.rb[1:
|
624
|
-
./spec/models/solr_document_spec.rb[1:
|
625
|
-
./spec/models/solr_document_spec.rb[1:
|
626
|
-
./spec/models/solr_document_spec.rb[1:
|
627
|
-
./spec/models/solr_document_spec.rb[1:
|
628
|
-
./spec/models/solr_document_spec.rb[1:
|
629
|
-
./spec/models/solr_document_spec.rb[1:
|
630
|
-
./spec/models/
|
631
|
-
./spec/models/
|
632
|
-
./spec/models/
|
633
|
-
./spec/models/
|
634
|
-
./spec/models/
|
635
|
-
./spec/models/
|
636
|
-
./spec/models/
|
637
|
-
./spec/models/
|
638
|
-
./spec/models/
|
639
|
-
./spec/models/
|
640
|
-
./spec/models/
|
641
|
-
./spec/models/
|
642
|
-
./spec/models/
|
643
|
-
./spec/models/
|
644
|
-
./spec/models/
|
645
|
-
./spec/models/
|
646
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
647
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
648
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
649
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
650
|
-
./spec/models/spotlight/ability_spec.rb[1:1
|
651
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
652
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
653
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
654
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
655
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
656
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
657
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
658
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
659
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
660
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
661
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
662
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
663
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
664
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
665
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
666
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
667
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
668
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
669
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
670
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
671
|
-
./spec/models/spotlight/ability_spec.rb[1:4:
|
672
|
-
./spec/models/spotlight/
|
673
|
-
./spec/models/spotlight/
|
674
|
-
./spec/models/spotlight/
|
675
|
-
./spec/models/spotlight/
|
676
|
-
./spec/models/spotlight/
|
677
|
-
./spec/models/spotlight/
|
678
|
-
./spec/models/spotlight/
|
679
|
-
./spec/models/spotlight/
|
680
|
-
./spec/models/spotlight/
|
681
|
-
./spec/models/spotlight/
|
682
|
-
./spec/models/spotlight/
|
683
|
-
./spec/models/spotlight/
|
684
|
-
./spec/models/spotlight/
|
685
|
-
./spec/models/spotlight/
|
686
|
-
./spec/models/spotlight/
|
687
|
-
./spec/models/spotlight/
|
688
|
-
./spec/models/spotlight/
|
689
|
-
./spec/models/spotlight/
|
690
|
-
./spec/models/spotlight/
|
691
|
-
./spec/models/spotlight/
|
692
|
-
./spec/models/spotlight/
|
693
|
-
./spec/models/spotlight/
|
694
|
-
./spec/models/spotlight/
|
695
|
-
./spec/models/spotlight/
|
696
|
-
./spec/models/spotlight/
|
697
|
-
./spec/models/spotlight/
|
698
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
699
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
700
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
701
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
702
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
703
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
704
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
705
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
706
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
707
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
708
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
709
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
710
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
711
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
712
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
713
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:
|
714
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
715
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
716
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
717
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
718
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
719
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
720
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
721
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
722
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
723
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
724
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
725
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
726
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5
|
727
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
728
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
729
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
730
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
731
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
732
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
733
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
734
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
735
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
736
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
737
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
738
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
739
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
740
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
741
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
742
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
743
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
744
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
745
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
746
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
747
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
748
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
749
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
750
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
751
|
-
./spec/models/spotlight/
|
752
|
-
./spec/models/spotlight/
|
753
|
-
./spec/models/spotlight/
|
754
|
-
./spec/models/spotlight/
|
755
|
-
./spec/models/spotlight/
|
756
|
-
./spec/models/spotlight/
|
757
|
-
./spec/models/spotlight/
|
758
|
-
./spec/models/spotlight/
|
759
|
-
./spec/models/spotlight/
|
760
|
-
./spec/models/spotlight/
|
761
|
-
./spec/models/spotlight/
|
762
|
-
./spec/models/spotlight/
|
763
|
-
./spec/models/spotlight/
|
764
|
-
./spec/models/spotlight/
|
765
|
-
./spec/models/spotlight/
|
766
|
-
./spec/models/spotlight/
|
767
|
-
./spec/models/spotlight/
|
768
|
-
./spec/models/spotlight/
|
769
|
-
./spec/models/spotlight/
|
770
|
-
./spec/models/spotlight/
|
771
|
-
./spec/models/spotlight/
|
772
|
-
./spec/models/spotlight/
|
773
|
-
./spec/models/spotlight/
|
774
|
-
./spec/models/spotlight/
|
775
|
-
./spec/models/spotlight/
|
776
|
-
./spec/models/spotlight/
|
777
|
-
./spec/models/spotlight/
|
778
|
-
./spec/models/spotlight/
|
779
|
-
./spec/models/spotlight/
|
780
|
-
./spec/models/spotlight/
|
781
|
-
./spec/models/spotlight/
|
782
|
-
./spec/models/spotlight/
|
783
|
-
./spec/models/spotlight/
|
784
|
-
./spec/models/spotlight/
|
785
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
786
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
787
|
-
./spec/models/spotlight/custom_field_spec.rb[1:
|
788
|
-
./spec/models/spotlight/
|
789
|
-
./spec/models/spotlight/
|
790
|
-
./spec/models/spotlight/
|
791
|
-
./spec/models/spotlight/
|
792
|
-
./spec/models/spotlight/
|
793
|
-
./spec/models/spotlight/
|
794
|
-
./spec/models/spotlight/
|
795
|
-
./spec/models/spotlight/
|
796
|
-
./spec/models/spotlight/
|
797
|
-
./spec/models/spotlight/
|
798
|
-
./spec/models/spotlight/
|
799
|
-
./spec/models/spotlight/
|
800
|
-
./spec/models/spotlight/
|
801
|
-
./spec/models/spotlight/
|
802
|
-
./spec/models/spotlight/
|
803
|
-
./spec/models/spotlight/
|
804
|
-
./spec/models/spotlight/exhibit_spec.rb[1:1]
|
805
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
806
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
807
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
808
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
809
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
810
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
811
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
812
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
813
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
814
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
815
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
816
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
817
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
818
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
819
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
820
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
821
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
822
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
823
|
-
./spec/models/spotlight/
|
824
|
-
./spec/models/spotlight/
|
825
|
-
./spec/models/spotlight/
|
826
|
-
./spec/models/spotlight/
|
827
|
-
./spec/models/spotlight/
|
828
|
-
./spec/models/spotlight/
|
829
|
-
./spec/models/spotlight/
|
830
|
-
./spec/models/spotlight/
|
831
|
-
./spec/models/spotlight/
|
832
|
-
./spec/models/spotlight/
|
833
|
-
./spec/models/spotlight/
|
834
|
-
./spec/models/spotlight/
|
835
|
-
./spec/models/spotlight/
|
836
|
-
./spec/models/spotlight/
|
837
|
-
./spec/models/spotlight/
|
838
|
-
./spec/models/spotlight/
|
839
|
-
./spec/models/spotlight/
|
840
|
-
./spec/models/spotlight/
|
841
|
-
./spec/models/spotlight/
|
842
|
-
./spec/models/spotlight/
|
843
|
-
./spec/models/spotlight/
|
844
|
-
./spec/models/spotlight/
|
845
|
-
./spec/models/spotlight/
|
846
|
-
./spec/models/spotlight/
|
847
|
-
./spec/models/spotlight/
|
848
|
-
./spec/models/spotlight/
|
849
|
-
./spec/models/spotlight/
|
850
|
-
./spec/models/spotlight/
|
851
|
-
./spec/models/spotlight/
|
852
|
-
./spec/models/spotlight/
|
853
|
-
./spec/models/spotlight/
|
854
|
-
./spec/models/spotlight/
|
855
|
-
./spec/models/spotlight/
|
856
|
-
./spec/models/spotlight/
|
857
|
-
./spec/models/spotlight/
|
858
|
-
./spec/models/spotlight/
|
859
|
-
./spec/models/spotlight/
|
860
|
-
./spec/models/spotlight/
|
861
|
-
./spec/models/spotlight/
|
862
|
-
./spec/models/spotlight/
|
863
|
-
./spec/models/spotlight/
|
864
|
-
./spec/models/spotlight/
|
865
|
-
./spec/models/spotlight/
|
866
|
-
./spec/models/spotlight/
|
867
|
-
./spec/models/spotlight/
|
868
|
-
./spec/models/spotlight/
|
869
|
-
./spec/models/spotlight/
|
870
|
-
./spec/models/spotlight/
|
871
|
-
./spec/models/spotlight/
|
872
|
-
./spec/models/spotlight/
|
873
|
-
./spec/models/spotlight/
|
874
|
-
./spec/models/spotlight/
|
875
|
-
./spec/models/spotlight/
|
876
|
-
./spec/models/spotlight/
|
877
|
-
./spec/models/spotlight/
|
878
|
-
./spec/models/spotlight/
|
879
|
-
./spec/models/spotlight/
|
880
|
-
./spec/models/spotlight/
|
881
|
-
./spec/models/spotlight/
|
882
|
-
./spec/models/spotlight/
|
883
|
-
./spec/models/spotlight/
|
884
|
-
./spec/models/spotlight/
|
885
|
-
./spec/models/spotlight/
|
886
|
-
./spec/models/spotlight/page_spec.rb[1:
|
887
|
-
./spec/models/spotlight/page_spec.rb[1:
|
888
|
-
./spec/models/spotlight/page_spec.rb[1:
|
889
|
-
./spec/models/spotlight/page_spec.rb[1:
|
890
|
-
./spec/models/spotlight/page_spec.rb[1:
|
891
|
-
./spec/models/spotlight/page_spec.rb[1:
|
892
|
-
./spec/models/spotlight/page_spec.rb[1:
|
893
|
-
./spec/models/spotlight/page_spec.rb[1:
|
894
|
-
./spec/models/spotlight/
|
895
|
-
./spec/models/spotlight/
|
896
|
-
./spec/models/spotlight/
|
897
|
-
./spec/models/spotlight/
|
898
|
-
./spec/models/spotlight/
|
899
|
-
./spec/models/spotlight/
|
900
|
-
./spec/models/spotlight/
|
901
|
-
./spec/models/spotlight/
|
902
|
-
./spec/models/spotlight/
|
903
|
-
./spec/models/spotlight/
|
904
|
-
./spec/models/spotlight/
|
905
|
-
./spec/models/spotlight/
|
906
|
-
./spec/models/spotlight/
|
907
|
-
./spec/models/spotlight/
|
908
|
-
./spec/models/spotlight/
|
909
|
-
./spec/models/spotlight/
|
910
|
-
./spec/models/spotlight/
|
911
|
-
./spec/models/spotlight/
|
912
|
-
./spec/models/spotlight/
|
913
|
-
./spec/models/spotlight/
|
914
|
-
./spec/models/spotlight/
|
915
|
-
./spec/models/spotlight/
|
916
|
-
./spec/models/spotlight/
|
917
|
-
./spec/models/spotlight/
|
918
|
-
./spec/models/spotlight/
|
919
|
-
./spec/models/spotlight/
|
920
|
-
./spec/models/spotlight/
|
921
|
-
./spec/models/spotlight/
|
922
|
-
./spec/models/spotlight/
|
923
|
-
./spec/models/spotlight/
|
924
|
-
./spec/models/spotlight/
|
925
|
-
./spec/models/spotlight/
|
926
|
-
./spec/models/spotlight/
|
927
|
-
./spec/models/spotlight/
|
928
|
-
./spec/models/spotlight/
|
929
|
-
./spec/models/spotlight/
|
930
|
-
./spec/models/spotlight/
|
931
|
-
./spec/models/spotlight/
|
932
|
-
./spec/models/spotlight/
|
933
|
-
./spec/models/spotlight/
|
934
|
-
./spec/models/spotlight/
|
935
|
-
./spec/models/spotlight/
|
936
|
-
./spec/models/spotlight/
|
937
|
-
./spec/models/spotlight/
|
938
|
-
./spec/models/spotlight/
|
939
|
-
./spec/models/spotlight/
|
940
|
-
./spec/models/spotlight/
|
941
|
-
./spec/models/spotlight/
|
942
|
-
./spec/models/spotlight/
|
943
|
-
./spec/models/spotlight/
|
944
|
-
./spec/models/spotlight/
|
945
|
-
./spec/models/spotlight/
|
946
|
-
./spec/models/spotlight/
|
947
|
-
./spec/models/spotlight/resources/
|
948
|
-
./spec/models/spotlight/resources/
|
949
|
-
./spec/models/spotlight/resources/
|
950
|
-
./spec/models/spotlight/resources/
|
951
|
-
./spec/models/spotlight/resources/
|
952
|
-
./spec/models/spotlight/resources/
|
953
|
-
./spec/models/spotlight/resources/
|
954
|
-
./spec/models/spotlight/resources/
|
955
|
-
./spec/models/spotlight/resources/
|
956
|
-
./spec/models/spotlight/resources/
|
957
|
-
./spec/models/spotlight/resources/
|
958
|
-
./spec/models/spotlight/resources/
|
959
|
-
./spec/models/spotlight/resources/
|
960
|
-
./spec/models/spotlight/resources/
|
961
|
-
./spec/models/spotlight/resources/
|
962
|
-
./spec/models/spotlight/resources/
|
963
|
-
./spec/models/spotlight/resources/
|
964
|
-
./spec/models/spotlight/resources/
|
965
|
-
./spec/models/spotlight/resources/
|
966
|
-
./spec/models/spotlight/resources/
|
967
|
-
./spec/models/spotlight/resources/
|
968
|
-
./spec/models/spotlight/resources/
|
969
|
-
./spec/models/spotlight/
|
970
|
-
./spec/models/spotlight/
|
971
|
-
./spec/models/spotlight/
|
972
|
-
./spec/models/spotlight/
|
973
|
-
./spec/models/spotlight/
|
974
|
-
./spec/models/spotlight/
|
975
|
-
./spec/models/spotlight/
|
976
|
-
./spec/models/spotlight/
|
977
|
-
./spec/models/spotlight/
|
978
|
-
./spec/models/spotlight/
|
979
|
-
./spec/models/spotlight/
|
980
|
-
./spec/models/spotlight/
|
981
|
-
./spec/models/spotlight/
|
982
|
-
./spec/models/spotlight/
|
983
|
-
./spec/models/spotlight/
|
984
|
-
./spec/models/spotlight/
|
985
|
-
./spec/models/spotlight/
|
986
|
-
./spec/models/spotlight/
|
987
|
-
./spec/models/spotlight/
|
988
|
-
./spec/models/spotlight/
|
989
|
-
./spec/models/spotlight/
|
990
|
-
./spec/models/spotlight/
|
991
|
-
./spec/models/spotlight/
|
992
|
-
./spec/models/spotlight/
|
993
|
-
./spec/models/spotlight/
|
994
|
-
./spec/models/spotlight/
|
995
|
-
./spec/models/spotlight/
|
996
|
-
./spec/models/spotlight/
|
997
|
-
./spec/models/spotlight/
|
998
|
-
./spec/models/spotlight/
|
999
|
-
./spec/models/spotlight/
|
1000
|
-
./spec/models/spotlight/
|
1001
|
-
./spec/models/spotlight/
|
1002
|
-
./spec/models/spotlight/
|
1003
|
-
./spec/models/spotlight/
|
1004
|
-
./spec/models/spotlight/
|
1005
|
-
./spec/
|
1006
|
-
./spec/
|
1007
|
-
./spec/
|
1008
|
-
./spec/
|
1009
|
-
./spec/
|
1010
|
-
./spec/
|
1011
|
-
./spec/
|
1012
|
-
./spec/
|
1013
|
-
./spec/
|
1014
|
-
./spec/
|
1015
|
-
./spec/
|
1016
|
-
./spec/
|
1017
|
-
./spec/
|
1018
|
-
./spec/
|
1019
|
-
./spec/
|
1020
|
-
./spec/
|
1021
|
-
./spec/
|
1022
|
-
./spec/
|
1023
|
-
./spec/
|
1024
|
-
./spec/
|
1025
|
-
./spec/
|
1026
|
-
./spec/
|
1027
|
-
./spec/
|
1028
|
-
./spec/
|
1029
|
-
./spec/
|
1030
|
-
./spec/
|
1031
|
-
./spec/
|
1032
|
-
./spec/
|
1033
|
-
./spec/
|
1034
|
-
./spec/
|
1035
|
-
./spec/
|
1036
|
-
./spec/
|
1037
|
-
./spec/
|
1038
|
-
./spec/
|
1039
|
-
./spec/
|
1040
|
-
./spec/
|
1041
|
-
./spec/
|
1042
|
-
./spec/
|
1043
|
-
./spec/
|
1044
|
-
./spec/
|
1045
|
-
./spec/
|
1046
|
-
./spec/
|
1047
|
-
./spec/
|
1048
|
-
./spec/
|
1049
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1]
|
1050
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1051
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1052
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1053
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1054
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1055
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1056
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1057
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1058
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1059
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1060
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1061
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1]
|
1062
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:
|
1063
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1064
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1065
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1066
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1067
|
-
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:
|
1068
|
-
./spec/
|
1069
|
-
./spec/
|
1070
|
-
./spec/
|
1071
|
-
./spec/
|
1072
|
-
./spec/
|
1073
|
-
./spec/
|
1074
|
-
./spec/
|
1075
|
-
./spec/
|
1076
|
-
./spec/
|
1077
|
-
./spec/
|
1078
|
-
./spec/
|
1079
|
-
./spec/
|
1080
|
-
./spec/
|
1081
|
-
./spec/
|
1082
|
-
./spec/
|
1083
|
-
./spec/
|
1084
|
-
./spec/
|
1085
|
-
./spec/
|
1086
|
-
./spec/
|
1087
|
-
./spec/
|
1088
|
-
./spec/
|
1089
|
-
./spec/
|
1090
|
-
./spec/
|
1091
|
-
./spec/
|
1092
|
-
./spec/
|
1093
|
-
./spec/
|
1094
|
-
./spec/
|
1095
|
-
./spec/
|
1096
|
-
./spec/
|
1097
|
-
./spec/
|
1098
|
-
./spec/
|
1099
|
-
./spec/
|
1100
|
-
./spec/
|
1101
|
-
./spec/
|
1102
|
-
./spec/
|
1103
|
-
./spec/
|
1104
|
-
./spec/
|
1105
|
-
./spec/
|
1106
|
-
./spec/
|
1107
|
-
./spec/
|
1108
|
-
./spec/
|
1109
|
-
./spec/
|
1110
|
-
./spec/
|
1111
|
-
./spec/
|
1112
|
-
./spec/
|
1113
|
-
./spec/
|
1114
|
-
./spec/views/
|
1115
|
-
./spec/views/
|
1116
|
-
./spec/views/
|
1117
|
-
./spec/views/
|
1118
|
-
./spec/views/
|
1119
|
-
./spec/views/
|
1120
|
-
./spec/views/shared/
|
1121
|
-
./spec/views/shared/
|
1122
|
-
./spec/views/shared/
|
1123
|
-
./spec/views/shared/
|
1124
|
-
./spec/views/shared/
|
1125
|
-
./spec/views/shared/
|
1126
|
-
./spec/views/
|
1127
|
-
./spec/views/
|
1128
|
-
./spec/views/
|
1129
|
-
./spec/views/
|
1130
|
-
./spec/views/
|
1131
|
-
./spec/views/
|
1132
|
-
./spec/views/
|
1133
|
-
./spec/views/
|
1134
|
-
./spec/views/
|
1135
|
-
./spec/views/
|
1136
|
-
./spec/views/
|
1137
|
-
./spec/views/
|
1138
|
-
./spec/views/
|
1139
|
-
./spec/views/
|
1140
|
-
./spec/views/
|
1141
|
-
./spec/views/
|
1142
|
-
./spec/views/
|
1143
|
-
./spec/views/
|
1144
|
-
./spec/views/
|
1145
|
-
./spec/views/
|
1146
|
-
./spec/views/
|
1147
|
-
./spec/views/
|
1148
|
-
./spec/views/
|
1149
|
-
./spec/views/spotlight/
|
1150
|
-
./spec/views/spotlight/
|
1151
|
-
./spec/views/spotlight/
|
1152
|
-
./spec/views/spotlight/
|
1153
|
-
./spec/views/spotlight/
|
1154
|
-
./spec/views/spotlight/
|
1155
|
-
./spec/views/spotlight/
|
1156
|
-
./spec/views/spotlight/
|
1157
|
-
./spec/views/spotlight/
|
1158
|
-
./spec/views/spotlight/
|
1159
|
-
./spec/views/spotlight/
|
1160
|
-
./spec/views/spotlight/
|
1161
|
-
./spec/views/spotlight/
|
1162
|
-
./spec/views/spotlight/
|
1163
|
-
./spec/views/spotlight/
|
1164
|
-
./spec/views/spotlight/
|
1165
|
-
./spec/views/spotlight/
|
1166
|
-
./spec/views/spotlight/
|
1167
|
-
./spec/views/spotlight/
|
1168
|
-
./spec/views/spotlight/
|
1169
|
-
./spec/views/spotlight/
|
1170
|
-
./spec/views/spotlight/
|
1171
|
-
./spec/views/spotlight/
|
1172
|
-
./spec/views/spotlight/
|
1173
|
-
./spec/views/spotlight/
|
1174
|
-
./spec/views/spotlight/
|
1175
|
-
./spec/views/spotlight/
|
1176
|
-
./spec/views/spotlight/
|
1177
|
-
./spec/views/spotlight/
|
1178
|
-
./spec/views/spotlight/
|
1179
|
-
./spec/views/spotlight/
|
1180
|
-
./spec/views/spotlight/
|
1181
|
-
./spec/views/spotlight/
|
1182
|
-
./spec/views/spotlight/
|
1183
|
-
./spec/views/spotlight/
|
1184
|
-
./spec/views/spotlight/
|
1185
|
-
./spec/views/spotlight/
|
1186
|
-
./spec/views/spotlight/
|
1187
|
-
./spec/views/spotlight/
|
1188
|
-
./spec/views/spotlight/
|
1189
|
-
./spec/views/spotlight/
|
1190
|
-
./spec/views/spotlight/
|
1191
|
-
./spec/views/spotlight/
|
1192
|
-
./spec/views/spotlight/
|
1193
|
-
./spec/views/spotlight/
|
1194
|
-
./spec/views/spotlight/
|
1195
|
-
./spec/views/spotlight/
|
1196
|
-
./spec/views/spotlight/
|
1197
|
-
./spec/views/spotlight/
|
1198
|
-
./spec/views/spotlight/
|
1199
|
-
./spec/views/spotlight/
|
1200
|
-
./spec/views/spotlight/
|
1201
|
-
./spec/views/spotlight/
|
1202
|
-
./spec/views/spotlight/
|
1203
|
-
./spec/views/spotlight/
|
1204
|
-
./spec/views/spotlight/
|
1205
|
-
./spec/views/spotlight/
|
1206
|
-
./spec/views/spotlight/
|
1207
|
-
./spec/views/spotlight/
|
1208
|
-
./spec/views/spotlight/
|
1209
|
-
./spec/views/spotlight/
|
1210
|
-
./spec/views/spotlight/
|
1211
|
-
./spec/views/spotlight/
|
1212
|
-
./spec/views/spotlight/
|
1213
|
-
./spec/views/spotlight/
|
1214
|
-
./spec/views/spotlight/
|
1215
|
-
./spec/views/spotlight/
|
1216
|
-
./spec/views/spotlight/
|
1217
|
-
./spec/views/spotlight/
|
1218
|
-
./spec/views/spotlight/
|
1219
|
-
./spec/views/spotlight/
|
1220
|
-
./spec/views/spotlight/
|
1221
|
-
./spec/views/spotlight/
|
1222
|
-
./spec/views/spotlight/
|
1223
|
-
./spec/views/spotlight/
|
1224
|
-
./spec/views/spotlight/
|
1225
|
-
./spec/views/spotlight/
|
1226
|
-
./spec/views/spotlight/
|
1227
|
-
./spec/views/spotlight/
|
1228
|
-
./spec/views/spotlight/
|
1229
|
-
./spec/views/spotlight/
|
1230
|
-
./spec/views/spotlight/
|
1231
|
-
./spec/views/spotlight/
|
1232
|
-
./spec/views/spotlight/
|
1233
|
-
./spec/views/spotlight/
|
1234
|
-
./spec/views/spotlight/
|
1235
|
-
./spec/views/spotlight/
|
1236
|
-
./spec/views/spotlight/
|
1237
|
-
./spec/views/spotlight/
|
1238
|
-
./spec/views/spotlight/
|
1239
|
-
./spec/views/spotlight/
|
1240
|
-
./spec/views/spotlight/
|
1241
|
-
./spec/views/spotlight/
|
1242
|
-
./spec/views/spotlight/
|
1243
|
-
./spec/views/spotlight/
|
1244
|
-
./spec/views/spotlight/
|
1245
|
-
./spec/views/spotlight/
|
1246
|
-
./spec/views/spotlight/
|
1247
|
-
./spec/views/spotlight/
|
1248
|
-
./spec/views/spotlight/
|
1249
|
-
./spec/views/spotlight/
|
1250
|
-
./spec/views/spotlight/
|
1251
|
-
./spec/views/spotlight/
|
1252
|
-
./spec/views/spotlight/
|
1253
|
-
./spec/views/spotlight/
|
1254
|
-
./spec/views/spotlight/
|
1255
|
-
./spec/views/spotlight/
|
1256
|
-
./spec/views/spotlight/
|
1257
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.07621 seconds |
|
1258
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.20194 seconds |
|
1259
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.07403 seconds |
|
1260
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.2683 seconds |
|
1261
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.09107 seconds |
|
1262
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.10541 seconds |
|
1263
|
-
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.21182 seconds |
|
1264
|
-
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.46224 seconds |
|
1265
|
-
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.10703 seconds |
|
1266
|
-
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.04143 seconds |
|
1267
|
-
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.03608 seconds |
|
1268
|
-
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.20965 seconds |
|
1269
|
-
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.15567 seconds |
|
1270
|
-
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01316 seconds |
|
1271
|
-
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.22605 seconds |
|
1272
|
-
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.16204 seconds |
|
1273
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.1553 seconds |
|
1274
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.25225 seconds |
|
1275
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.17497 seconds |
|
1276
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.1603 seconds |
|
1277
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01638 seconds |
|
1278
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.16622 seconds |
|
1279
|
-
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.12113 seconds |
|
1280
|
-
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 1.03 seconds |
|
1281
|
-
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.09857 seconds |
|
1282
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.09103 seconds |
|
1283
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.17295 seconds |
|
1284
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.13617 seconds |
|
1285
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.12115 seconds |
|
1286
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.10413 seconds |
|
1287
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.0722 seconds |
|
1288
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.08326 seconds |
|
411
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 1.17 seconds |
|
412
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 0.98793 seconds |
|
413
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 0.91486 seconds |
|
414
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.6944 seconds |
|
415
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.60595 seconds |
|
416
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.71 seconds |
|
417
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.14307 seconds |
|
418
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.12516 seconds |
|
419
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.12066 seconds |
|
420
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.29364 seconds |
|
421
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.19026 seconds |
|
422
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.14866 seconds |
|
423
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.13514 seconds |
|
424
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.11751 seconds |
|
425
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.24133 seconds |
|
426
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 1.02 seconds |
|
427
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 0.8533 seconds |
|
428
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.35247 seconds |
|
429
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.37903 seconds |
|
430
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.82986 seconds |
|
431
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.68636 seconds |
|
432
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.68 seconds |
|
433
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.6611 seconds |
|
434
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.60852 seconds |
|
435
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.15308 seconds |
|
436
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.16996 seconds |
|
437
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.09935 seconds |
|
438
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.09288 seconds |
|
439
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.48 seconds |
|
440
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.20111 seconds |
|
441
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.02965 seconds |
|
442
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01527 seconds |
|
443
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.01355 seconds |
|
444
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.01278 seconds |
|
445
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.0124 seconds |
|
446
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01106 seconds |
|
447
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.07506 seconds |
|
448
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01102 seconds |
|
449
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.01372 seconds |
|
450
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.06922 seconds |
|
451
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.07333 seconds |
|
452
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.01366 seconds |
|
453
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01166 seconds |
|
454
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.0186 seconds |
|
455
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01198 seconds |
|
456
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01272 seconds |
|
457
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.01407 seconds |
|
458
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.01321 seconds |
|
459
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.01151 seconds |
|
460
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.01192 seconds |
|
461
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01633 seconds |
|
462
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.09416 seconds |
|
463
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.07939 seconds |
|
464
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.07043 seconds |
|
465
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.07711 seconds |
|
466
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.07298 seconds |
|
467
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.06893 seconds |
|
468
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.07479 seconds |
|
469
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.07638 seconds |
|
470
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.07532 seconds |
|
471
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.07726 seconds |
|
472
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.09604 seconds |
|
473
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.07188 seconds |
|
474
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.0142 seconds |
|
475
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.0749 seconds |
|
476
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01553 seconds |
|
477
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.07159 seconds |
|
478
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.01218 seconds |
|
479
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.07102 seconds |
|
480
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.07533 seconds |
|
481
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.07558 seconds |
|
482
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01362 seconds |
|
483
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.07027 seconds |
|
484
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.01355 seconds |
|
485
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.11109 seconds |
|
486
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.09376 seconds |
|
487
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.08614 seconds |
|
488
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.07906 seconds |
|
489
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.01289 seconds |
|
490
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.0125 seconds |
|
491
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.01139 seconds |
|
492
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.08515 seconds |
|
493
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.08417 seconds |
|
494
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.08525 seconds |
|
495
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.0858 seconds |
|
496
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.11792 seconds |
|
497
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.09537 seconds |
|
498
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.09613 seconds |
|
499
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.1008 seconds |
|
500
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.1145 seconds |
|
501
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.14079 seconds |
|
502
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.14248 seconds |
|
503
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.12754 seconds |
|
504
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.11472 seconds |
|
505
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.08846 seconds |
|
506
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.01222 seconds |
|
507
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.01015 seconds |
|
508
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.01386 seconds |
|
509
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.00948 seconds |
|
510
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.01179 seconds |
|
511
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.01298 seconds |
|
512
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01126 seconds |
|
513
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01262 seconds |
|
514
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.0128 seconds |
|
515
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.01519 seconds |
|
516
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.09382 seconds |
|
517
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.17038 seconds |
|
518
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.01178 seconds |
|
519
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.16888 seconds |
|
520
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.20244 seconds |
|
521
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.1929 seconds |
|
522
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.16993 seconds |
|
523
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.19608 seconds |
|
524
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.18219 seconds |
|
525
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.07421 seconds |
|
526
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.08452 seconds |
|
527
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.09068 seconds |
|
528
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.11868 seconds |
|
529
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.10829 seconds |
|
530
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.10137 seconds |
|
531
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.09655 seconds |
|
532
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.10436 seconds |
|
533
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.10094 seconds |
|
534
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.02481 seconds |
|
535
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.01197 seconds |
|
536
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.01093 seconds |
|
537
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.01046 seconds |
|
538
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.00942 seconds |
|
539
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.01194 seconds |
|
540
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.01226 seconds |
|
541
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.06472 seconds |
|
542
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.01083 seconds |
|
543
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01071 seconds |
|
544
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.00957 seconds |
|
545
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.0703 seconds |
|
546
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.12956 seconds |
|
547
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.0154 seconds |
|
548
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.0166 seconds |
|
549
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.01335 seconds |
|
550
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.01338 seconds |
|
551
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.07976 seconds |
|
552
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.08053 seconds |
|
553
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.07808 seconds |
|
554
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.12829 seconds |
|
555
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.07919 seconds |
|
556
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.08111 seconds |
|
557
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.08295 seconds |
|
558
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.07918 seconds |
|
559
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.08313 seconds |
|
560
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.07903 seconds |
|
561
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.08119 seconds |
|
562
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.01112 seconds |
|
563
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.0107 seconds |
|
564
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.01025 seconds |
|
565
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.01545 seconds |
|
566
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.01021 seconds |
|
567
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.01304 seconds |
|
568
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.01414 seconds |
|
569
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.08029 seconds |
|
570
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.07158 seconds |
|
571
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.08858 seconds |
|
572
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.01625 seconds |
|
573
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.04106 seconds |
|
574
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.01997 seconds |
|
575
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.03548 seconds |
|
576
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.0692 seconds |
|
577
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.12974 seconds |
|
578
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.09295 seconds |
|
579
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.09428 seconds |
|
580
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.08607 seconds |
|
581
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.11416 seconds |
|
582
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.10557 seconds |
|
583
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.08977 seconds |
|
584
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.07369 seconds |
|
585
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.072 seconds |
|
586
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.075 seconds |
|
587
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.07712 seconds |
|
588
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.07519 seconds |
|
589
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.01086 seconds |
|
590
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.01139 seconds |
|
591
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.01157 seconds |
|
592
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.01043 seconds |
|
593
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.01119 seconds |
|
594
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.0114 seconds |
|
595
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01034 seconds |
|
596
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.07481 seconds |
|
597
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.07683 seconds |
|
598
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.10199 seconds |
|
599
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.07352 seconds |
|
600
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.0879 seconds |
|
601
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.08237 seconds |
|
602
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.07567 seconds |
|
603
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.08589 seconds |
|
604
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.07108 seconds |
|
605
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.02678 seconds |
|
606
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.08362 seconds |
|
607
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.09252 seconds |
|
608
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.09209 seconds |
|
609
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.08799 seconds |
|
610
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.08604 seconds |
|
611
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.10486 seconds |
|
612
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.08191 seconds |
|
613
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.08564 seconds |
|
614
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.08572 seconds |
|
615
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.08412 seconds |
|
616
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.08721 seconds |
|
617
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.08004 seconds |
|
618
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.08539 seconds |
|
619
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.0845 seconds |
|
620
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.08017 seconds |
|
621
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.09936 seconds |
|
622
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.0999 seconds |
|
623
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.08269 seconds |
|
624
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.10913 seconds |
|
625
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.09514 seconds |
|
626
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.08877 seconds |
|
627
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.0798 seconds |
|
628
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.08947 seconds |
|
629
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.08793 seconds |
|
630
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.08522 seconds |
|
631
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.0848 seconds |
|
632
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.08752 seconds |
|
633
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.08293 seconds |
|
634
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.08011 seconds |
|
635
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.08676 seconds |
|
636
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.08626 seconds |
|
637
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.10495 seconds |
|
638
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.01003 seconds |
|
639
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01142 seconds |
|
640
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.07341 seconds |
|
641
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.09731 seconds |
|
642
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.08451 seconds |
|
643
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.08096 seconds |
|
644
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.08473 seconds |
|
645
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.08446 seconds |
|
646
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.08885 seconds |
|
647
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.07057 seconds |
|
648
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.08074 seconds |
|
649
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.08649 seconds |
|
650
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.08137 seconds |
|
651
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.07888 seconds |
|
652
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.08199 seconds |
|
653
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.08287 seconds |
|
654
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.10195 seconds |
|
655
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.07636 seconds |
|
656
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.07914 seconds |
|
657
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.07073 seconds |
|
658
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.07501 seconds |
|
659
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.08222 seconds |
|
660
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.07848 seconds |
|
661
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.08611 seconds |
|
662
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.08214 seconds |
|
663
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.0786 seconds |
|
664
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.07862 seconds |
|
665
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.07956 seconds |
|
666
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.09358 seconds |
|
667
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.08997 seconds |
|
668
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.07942 seconds |
|
669
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.09499 seconds |
|
670
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.07755 seconds |
|
671
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.07746 seconds |
|
672
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.085 seconds |
|
673
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.08009 seconds |
|
674
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.08201 seconds |
|
675
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.079 seconds |
|
676
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.07758 seconds |
|
677
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.079 seconds |
|
678
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.08317 seconds |
|
679
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.09449 seconds |
|
680
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.09159 seconds |
|
681
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.08507 seconds |
|
682
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.08347 seconds |
|
683
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.08692 seconds |
|
684
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.09532 seconds |
|
685
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.08826 seconds |
|
686
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.09427 seconds |
|
687
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.08589 seconds |
|
688
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.08323 seconds |
|
689
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.08319 seconds |
|
690
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.08676 seconds |
|
691
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.07981 seconds |
|
692
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.07802 seconds |
|
693
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.0881 seconds |
|
694
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.08934 seconds |
|
695
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.08948 seconds |
|
696
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.08361 seconds |
|
697
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.08842 seconds |
|
698
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.0855 seconds |
|
699
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.13162 seconds |
|
700
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.08062 seconds |
|
701
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.08585 seconds |
|
702
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.08694 seconds |
|
703
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.08347 seconds |
|
704
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.07936 seconds |
|
705
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.08133 seconds |
|
706
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.07147 seconds |
|
707
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.07659 seconds |
|
708
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.07485 seconds |
|
709
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.07575 seconds |
|
710
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.07446 seconds |
|
711
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.07948 seconds |
|
712
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.07593 seconds |
|
713
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.07078 seconds |
|
714
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.0925 seconds |
|
715
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.07136 seconds |
|
716
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.07056 seconds |
|
717
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.01114 seconds |
|
718
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.01234 seconds |
|
719
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.01252 seconds |
|
720
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.0148 seconds |
|
721
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.02962 seconds |
|
722
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.01302 seconds |
|
723
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.01492 seconds |
|
724
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.01877 seconds |
|
725
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.01983 seconds |
|
726
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.01163 seconds |
|
727
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.01457 seconds |
|
728
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.00955 seconds |
|
729
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.01376 seconds |
|
730
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.01013 seconds |
|
731
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.07364 seconds |
|
732
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.0751 seconds |
|
733
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.07409 seconds |
|
734
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.07059 seconds |
|
735
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.01188 seconds |
|
736
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.07017 seconds |
|
737
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.07085 seconds |
|
738
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.01553 seconds |
|
739
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.07711 seconds |
|
740
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.01296 seconds |
|
741
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.01683 seconds |
|
742
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01887 seconds |
|
743
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01618 seconds |
|
744
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.07194 seconds |
|
745
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.07559 seconds |
|
746
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.09594 seconds |
|
747
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.0797 seconds |
|
748
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.07613 seconds |
|
749
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.07491 seconds |
|
750
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.07585 seconds |
|
751
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.07711 seconds |
|
752
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.09236 seconds |
|
753
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.07864 seconds |
|
754
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.26965 seconds |
|
755
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.02035 seconds |
|
756
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.31862 seconds |
|
757
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.03845 seconds |
|
758
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:2] | passed | 0.07084 seconds |
|
759
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.03031 seconds |
|
760
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6] | passed | 0.0184 seconds |
|
761
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.06454 seconds |
|
762
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.0759 seconds |
|
763
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.06583 seconds |
|
764
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.06381 seconds |
|
765
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.04131 seconds |
|
766
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.17913 seconds |
|
767
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:2] | passed | 0.06445 seconds |
|
768
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.09588 seconds |
|
769
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.07196 seconds |
|
770
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.08181 seconds |
|
771
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:3:1] | passed | 0.06991 seconds |
|
772
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.0662 seconds |
|
773
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.0664 seconds |
|
774
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.08342 seconds |
|
775
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.06488 seconds |
|
776
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.06557 seconds |
|
777
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.06698 seconds |
|
778
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.02176 seconds |
|
779
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2] | passed | 0.03442 seconds |
|
780
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:3:1] | passed | 0.02289 seconds |
|
781
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:4:1] | passed | 0.02129 seconds |
|
782
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1:1] | passed | 0.08815 seconds |
|
783
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:2:1] | passed | 0.02072 seconds |
|
784
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.09821 seconds |
|
785
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20] | passed | 0.01918 seconds |
|
786
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.52647 seconds |
|
787
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:2] | passed | 0.07481 seconds |
|
788
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:3] | passed | 0.06926 seconds |
|
789
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.01288 seconds |
|
790
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.10242 seconds |
|
791
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.11864 seconds |
|
792
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.13914 seconds |
|
793
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.13321 seconds |
|
794
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.01382 seconds |
|
795
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.0778 seconds |
|
796
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.09497 seconds |
|
797
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.08529 seconds |
|
798
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.01571 seconds |
|
799
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.01099 seconds |
|
800
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.10092 seconds |
|
801
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.11618 seconds |
|
802
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.10389 seconds |
|
803
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.01402 seconds |
|
804
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.01621 seconds |
|
805
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.01307 seconds |
|
806
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.01356 seconds |
|
807
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.01985 seconds |
|
808
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.02434 seconds |
|
809
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.01714 seconds |
|
810
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01449 seconds |
|
811
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.01313 seconds |
|
812
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.08032 seconds |
|
813
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.07506 seconds |
|
814
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.07998 seconds |
|
815
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.08967 seconds |
|
816
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.01301 seconds |
|
817
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.01629 seconds |
|
818
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.01585 seconds |
|
819
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.01217 seconds |
|
820
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.08045 seconds |
|
821
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.08585 seconds |
|
822
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.08339 seconds |
|
823
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.08772 seconds |
|
824
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.08193 seconds |
|
825
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.07105 seconds |
|
826
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.07132 seconds |
|
827
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.01034 seconds |
|
828
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01459 seconds |
|
829
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.01281 seconds |
|
830
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.0107 seconds |
|
831
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.01056 seconds |
|
832
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.08366 seconds |
|
833
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.08998 seconds |
|
834
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.08044 seconds |
|
835
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.08219 seconds |
|
836
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.09074 seconds |
|
837
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.11492 seconds |
|
838
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.08798 seconds |
|
839
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.17394 seconds |
|
840
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.18638 seconds |
|
841
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.15307 seconds |
|
842
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.14759 seconds |
|
843
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.15118 seconds |
|
844
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.14785 seconds |
|
845
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.1605 seconds |
|
846
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.14155 seconds |
|
847
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.1087 seconds |
|
848
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.0898 seconds |
|
849
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.20976 seconds |
|
850
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.09987 seconds |
|
851
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.10475 seconds |
|
852
|
+
./spec/models/spotlight/page_spec.rb[1:14:2] | passed | 0.08917 seconds |
|
853
|
+
./spec/models/spotlight/page_spec.rb[1:14:3] | passed | 0.09113 seconds |
|
854
|
+
./spec/models/spotlight/page_spec.rb[1:14:4] | passed | 0.10854 seconds |
|
855
|
+
./spec/models/spotlight/page_spec.rb[1:14:5:1] | passed | 0.1264 seconds |
|
856
|
+
./spec/models/spotlight/page_spec.rb[1:14:6:1] | passed | 0.11674 seconds |
|
857
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.13246 seconds |
|
858
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.11763 seconds |
|
859
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.11974 seconds |
|
860
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.08516 seconds |
|
861
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.0804 seconds |
|
862
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.0811 seconds |
|
863
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.07922 seconds |
|
864
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.07625 seconds |
|
865
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.08286 seconds |
|
866
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.07613 seconds |
|
867
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.08264 seconds |
|
868
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.08203 seconds |
|
869
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.07802 seconds |
|
870
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.10588 seconds |
|
871
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.012 seconds |
|
872
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.45 seconds |
|
873
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.46 seconds |
|
874
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.07257 seconds |
|
875
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.08024 seconds |
|
876
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.0819 seconds |
|
877
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.07369 seconds |
|
878
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.06981 seconds |
|
879
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.07544 seconds |
|
880
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.07472 seconds |
|
881
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.07154 seconds |
|
882
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.13374 seconds |
|
883
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.14148 seconds |
|
884
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.15862 seconds |
|
885
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.13458 seconds |
|
886
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.15352 seconds |
|
887
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.15267 seconds |
|
888
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.1521 seconds |
|
889
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.01546 seconds |
|
890
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01245 seconds |
|
891
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.01515 seconds |
|
892
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.01311 seconds |
|
893
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.07127 seconds |
|
894
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.47907 seconds |
|
895
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.10359 seconds |
|
896
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.09886 seconds |
|
897
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.10522 seconds |
|
898
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.10421 seconds |
|
899
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.10488 seconds |
|
900
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.10359 seconds |
|
901
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.13446 seconds |
|
902
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.10738 seconds |
|
903
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.10394 seconds |
|
904
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.10395 seconds |
|
905
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.10544 seconds |
|
906
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.10532 seconds |
|
907
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.10048 seconds |
|
908
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.10622 seconds |
|
909
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.09975 seconds |
|
910
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.12593 seconds |
|
911
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.10322 seconds |
|
912
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.08928 seconds |
|
913
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01891 seconds |
|
914
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.02797 seconds |
|
915
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02954 seconds |
|
916
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.04346 seconds |
|
917
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.04571 seconds |
|
918
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.04609 seconds |
|
919
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.02286 seconds |
|
920
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.01403 seconds |
|
921
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.01142 seconds |
|
922
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.01102 seconds |
|
923
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 0.45018 seconds |
|
924
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.19503 seconds |
|
925
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.22284 seconds |
|
926
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.16394 seconds |
|
927
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.16867 seconds |
|
928
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.15529 seconds |
|
929
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.15983 seconds |
|
930
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 0.16123 seconds |
|
931
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.16485 seconds |
|
932
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.16995 seconds |
|
933
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.0152 seconds |
|
934
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.01423 seconds |
|
935
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.02674 seconds |
|
936
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.02879 seconds |
|
937
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01958 seconds |
|
938
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.02369 seconds |
|
939
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.11816 seconds |
|
940
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.28052 seconds |
|
941
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.09121 seconds |
|
942
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.10054 seconds |
|
943
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.0959 seconds |
|
944
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.08126 seconds |
|
945
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.08858 seconds |
|
946
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.09089 seconds |
|
947
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.07604 seconds |
|
948
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.06894 seconds |
|
949
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.01218 seconds |
|
950
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.2098 seconds |
|
951
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.07336 seconds |
|
952
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.07094 seconds |
|
953
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.07097 seconds |
|
954
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.07291 seconds |
|
955
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.10168 seconds |
|
956
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.10499 seconds |
|
957
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.07226 seconds |
|
958
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.09104 seconds |
|
959
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.01233 seconds |
|
960
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.01715 seconds |
|
961
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.01592 seconds |
|
962
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00996 seconds |
|
963
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.01212 seconds |
|
964
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.01696 seconds |
|
965
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.07867 seconds |
|
966
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.07778 seconds |
|
967
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.10135 seconds |
|
968
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.01093 seconds |
|
969
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.01277 seconds |
|
970
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.0115 seconds |
|
971
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.07494 seconds |
|
972
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.07858 seconds |
|
973
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.07943 seconds |
|
974
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.07808 seconds |
|
975
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.07545 seconds |
|
976
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.08249 seconds |
|
977
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.08057 seconds |
|
978
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.08179 seconds |
|
979
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.08046 seconds |
|
980
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.07954 seconds |
|
981
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.03239 seconds |
|
982
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.01047 seconds |
|
983
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.01137 seconds |
|
984
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.0131 seconds |
|
985
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.01258 seconds |
|
986
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.0094 seconds |
|
987
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.01103 seconds |
|
988
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.01077 seconds |
|
989
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.01109 seconds |
|
990
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.0102 seconds |
|
991
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.01083 seconds |
|
992
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.01133 seconds |
|
993
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.01135 seconds |
|
994
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.09168 seconds |
|
995
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.09177 seconds |
|
996
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.09208 seconds |
|
997
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.09545 seconds |
|
998
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.09168 seconds |
|
999
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.08988 seconds |
|
1000
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.09239 seconds |
|
1001
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.08941 seconds |
|
1002
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.11232 seconds |
|
1003
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.08504 seconds |
|
1004
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.08725 seconds |
|
1005
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.10146 seconds |
|
1006
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.21763 seconds |
|
1007
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.2319 seconds |
|
1008
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.21202 seconds |
|
1009
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.23204 seconds |
|
1010
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.20779 seconds |
|
1011
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.20371 seconds |
|
1012
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.23877 seconds |
|
1013
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.21085 seconds |
|
1014
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.22991 seconds |
|
1015
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.21825 seconds |
|
1016
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.2597 seconds |
|
1017
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.25566 seconds |
|
1018
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.27427 seconds |
|
1019
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.26374 seconds |
|
1020
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.28672 seconds |
|
1021
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.25535 seconds |
|
1022
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.22312 seconds |
|
1023
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.27903 seconds |
|
1024
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.29372 seconds |
|
1025
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.32487 seconds |
|
1026
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.28774 seconds |
|
1027
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.2345 seconds |
|
1028
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.22491 seconds |
|
1029
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.26484 seconds |
|
1030
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.23398 seconds |
|
1031
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.20164 seconds |
|
1032
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.22811 seconds |
|
1033
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.24407 seconds |
|
1034
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.02521 seconds |
|
1035
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.02865 seconds |
|
1036
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.01994 seconds |
|
1037
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.01937 seconds |
|
1038
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.01869 seconds |
|
1039
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.01766 seconds |
|
1040
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.01974 seconds |
|
1041
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.13522 seconds |
|
1042
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.13129 seconds |
|
1043
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.15574 seconds |
|
1044
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.10436 seconds |
|
1045
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.1928 seconds |
|
1046
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.19373 seconds |
|
1047
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.20236 seconds |
|
1048
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.01074 seconds |
|
1049
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.01187 seconds |
|
1050
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.01028 seconds |
|
1051
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.012 seconds |
|
1052
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.01694 seconds |
|
1053
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.01861 seconds |
|
1054
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.01514 seconds |
|
1055
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.02019 seconds |
|
1056
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.01689 seconds |
|
1057
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.20291 seconds |
|
1058
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.08109 seconds |
|
1059
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.08573 seconds |
|
1060
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.0863 seconds |
|
1061
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.08798 seconds |
|
1062
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.08463 seconds |
|
1063
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.10827 seconds |
|
1064
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.01783 seconds |
|
1065
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.18135 seconds |
|
1066
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.09096 seconds |
|
1067
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.10313 seconds |
|
1068
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.1331 seconds |
|
1069
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.1133 seconds |
|
1070
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.09006 seconds |
|
1071
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.10796 seconds |
|
1072
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.10694 seconds |
|
1073
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.10651 seconds |
|
1074
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.08686 seconds |
|
1075
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.13493 seconds |
|
1076
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.09623 seconds |
|
1077
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.08791 seconds |
|
1078
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.10212 seconds |
|
1079
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.09804 seconds |
|
1080
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.08547 seconds |
|
1081
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.08821 seconds |
|
1082
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.0865 seconds |
|
1083
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.11467 seconds |
|
1084
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.11419 seconds |
|
1085
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.19299 seconds |
|
1086
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.10406 seconds |
|
1087
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.08506 seconds |
|
1088
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.10552 seconds |
|
1089
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.1065 seconds |
|
1090
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.09923 seconds |
|
1091
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.10213 seconds |
|
1092
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.02151 seconds |
|
1093
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01284 seconds |
|
1094
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01394 seconds |
|
1095
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.12284 seconds |
|
1096
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 3.51 seconds |
|
1097
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.04815 seconds |
|
1098
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.05207 seconds |
|
1099
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.25108 seconds |
|
1100
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.14918 seconds |
|
1101
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.14992 seconds |
|
1102
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.12213 seconds |
|
1103
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.01591 seconds |
|
1104
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.16401 seconds |
|
1105
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.94825 seconds |
|
1106
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.15202 seconds |
|
1107
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.16445 seconds |
|
1108
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.16813 seconds |
|
1109
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.1897 seconds |
|
1110
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.16212 seconds |
|
1111
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.17344 seconds |
|
1112
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.04375 seconds |
|
1113
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.02871 seconds |
|
1114
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.05277 seconds |
|
1115
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.81838 seconds |
|
1116
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.04648 seconds |
|
1117
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.05032 seconds |
|
1118
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.02315 seconds |
|
1119
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.53798 seconds |
|
1120
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.08861 seconds |
|
1121
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.07555 seconds |
|
1122
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.081 seconds |
|
1123
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.07402 seconds |
|
1124
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.09271 seconds |
|
1125
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.11036 seconds |
|
1126
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01189 seconds |
|
1127
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.37626 seconds |
|
1128
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.32121 seconds |
|
1129
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.34272 seconds |
|
1130
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.39219 seconds |
|
1131
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.51362 seconds |
|
1132
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.34946 seconds |
|
1133
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.32477 seconds |
|
1134
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.07839 seconds |
|
1135
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.09968 seconds |
|
1136
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.09131 seconds |
|
1137
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.42571 seconds |
|
1138
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.08703 seconds |
|
1139
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.16876 seconds |
|
1140
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.07729 seconds |
|
1141
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.09126 seconds |
|
1142
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 1.93 seconds |
|
1143
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 2.19 seconds |
|
1144
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.22862 seconds |
|
1145
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.20141 seconds |
|
1146
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.20818 seconds |
|
1147
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.28831 seconds |
|
1148
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.2413 seconds |
|
1149
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.27598 seconds |
|
1150
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.28262 seconds |
|
1151
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.22583 seconds |
|
1152
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.43825 seconds |
|
1153
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02506 seconds |
|
1154
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.02565 seconds |
|
1155
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01407 seconds |
|
1156
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01405 seconds |
|
1157
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.2248 seconds |
|
1158
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.21124 seconds |
|
1159
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.08553 seconds |
|
1160
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.07456 seconds |
|
1161
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.02689 seconds |
|
1162
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.1682 seconds |
|
1163
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.07852 seconds |
|
1164
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.63821 seconds |
|
1165
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.4119 seconds |
|
1166
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.02949 seconds |
|
1167
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.1366 seconds |
|
1168
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.03166 seconds |
|
1169
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.03161 seconds |
|
1170
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.03288 seconds |
|
1171
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.02952 seconds |
|
1172
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.06036 seconds |
|
1173
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03489 seconds |
|
1174
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.12948 seconds |
|
1175
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.41448 seconds |
|
1176
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.03205 seconds |
|
1177
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.03126 seconds |
|
1178
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.05072 seconds |
|
1179
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.03139 seconds |
|
1180
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.03253 seconds |
|
1181
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.32208 seconds |
|
1182
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02898 seconds |
|
1183
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.03746 seconds |
|
1184
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.0433 seconds |
|
1185
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.05913 seconds |
|
1186
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.58468 seconds |
|
1187
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.11501 seconds |
|
1188
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.01465 seconds |
|
1189
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.01506 seconds |
|
1190
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.49871 seconds |
|
1191
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.1317 seconds |
|
1192
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.10432 seconds |
|
1193
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.1084 seconds |
|
1194
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.18694 seconds |
|
1195
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.13225 seconds |
|
1196
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.11237 seconds |
|
1197
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.0917 seconds |
|
1198
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.08896 seconds |
|
1199
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.08271 seconds |
|
1200
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.08771 seconds |
|
1201
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.21534 seconds |
|
1202
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.08757 seconds |
|
1203
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.08671 seconds |
|
1204
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.19898 seconds |
|
1205
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.39859 seconds |
|
1206
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.10909 seconds |
|
1207
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.04429 seconds |
|
1208
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.03009 seconds |
|
1209
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.2062 seconds |
|
1210
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.11723 seconds |
|
1211
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01692 seconds |
|
1212
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.19542 seconds |
|
1213
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.15272 seconds |
|
1214
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.11887 seconds |
|
1215
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.12671 seconds |
|
1216
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.1207 seconds |
|
1217
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.1314 seconds |
|
1218
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.02388 seconds |
|
1219
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.12153 seconds |
|
1220
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.63526 seconds |
|
1221
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.13924 seconds |
|
1222
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.12533 seconds |
|