blacklight-spotlight 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/spotlight/reindexing_log_entry.rb +1 -1
- data/app/views/spotlight/catalog/_edit_default.html.erb +2 -26
- data/app/views/spotlight/catalog/_edit_sidecar.html.erb +29 -0
- data/config/locales/spotlight.en.yml +2 -1
- data/config/locales/spotlight.it.yml +40 -0
- data/config/locales/spotlight.zh.yml +40 -0
- data/lib/generators/spotlight/increase_paper_trail_column_size_generator.rb +17 -0
- data/lib/generators/spotlight/install_generator.rb +4 -0
- data/lib/generators/spotlight/templates/migrations/20180814221815_change_paper_trail_versions_object_column_to_medium_text.rb +11 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/examples.txt +1298 -1227
- data/spec/features/add_custom_field_metadata_spec.rb +1 -1
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +25 -10
- metadata +21 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb72d76eeaf1096033720553f29bd890acda0277
|
4
|
+
data.tar.gz: b06af5a034bdd0d9247c13207de8ee774e42e141
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89fc49c820db11353b9c2d31344f1e6831499badc3fb5397202157c3bcbd644d99a77ac4e660859d51571ae3f3f0a06b5e05206e54fa204b2135e8cb86b5820f
|
7
|
+
data.tar.gz: e18d60931ed9650696320b9c3e282cdabb2e5a34800017d49cc0212e3a15bf1660ef672f3ba6e8c33ac35a40f07aef78129b504c4f33820f087fea18543f54f4
|
@@ -8,7 +8,7 @@ module Spotlight
|
|
8
8
|
belongs_to :user, class_name: '::User', optional: true
|
9
9
|
|
10
10
|
# null start times sort to the top, to more easily surface pending reindexing
|
11
|
-
default_scope { order('start_time IS NOT NULL, start_time DESC') }
|
11
|
+
default_scope { order(Arel.sql('start_time IS NOT NULL, start_time DESC')) }
|
12
12
|
scope :recent, -> { limit(5) }
|
13
13
|
scope :started_or_completed, -> { where.not(job_status: 'unstarted') }
|
14
14
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<%= bootstrap_form_for document, url: spotlight.polymorphic_path([current_exhibit, document]), html: {:'data-form-observer' => true, multipart: true} do |f| %>
|
2
2
|
<div class="edit-fields">
|
3
|
-
|
3
|
+
|
4
4
|
<%= f.fields_for :sidecar, document.sidecar(current_exhibit) do |c| %>
|
5
5
|
<%= c.check_box :public %>
|
6
6
|
<% end %>
|
@@ -9,31 +9,7 @@
|
|
9
9
|
<%= r.url_field :url, type: "file", help: t('.url-field.help', extensions: Spotlight::Engine.config.allowed_upload_extensions.join(' ')), label: "File" %>
|
10
10
|
<% end if document.uploaded_resource? %>
|
11
11
|
|
12
|
-
<%=
|
13
|
-
<%= c.fields_for :data do |d| %>
|
14
|
-
<% if document.uploaded_resource? %>
|
15
|
-
<%= d.fields_for :configured_fields do |e| %>
|
16
|
-
<% Spotlight::Resources::Upload.fields(current_exhibit).each do |config| %>
|
17
|
-
<%= e.send(config.form_field_type, config.field_name, value: (document.sidecar(current_exhibit).data["configured_fields"] || {})[config.field_name.to_s], label: uploaded_field_label(config)) %>
|
18
|
-
<% end %>
|
19
|
-
<% end %>
|
20
|
-
<% end %>
|
21
|
-
|
22
|
-
<%# Using `includes(:exhibit)` to ensure all fields are using the same exhibit object to take advantage of memoization %>
|
23
|
-
<% current_exhibit.custom_fields.includes(:exhibit).each do |field| %>
|
24
|
-
<div class="form-group">
|
25
|
-
<%= d.label field.field, field.label %>
|
26
|
-
<%= d.text_field_without_bootstrap field.field, value: document.sidecar(current_exhibit).data[field.field.to_s], class: 'form-control', readonly: field.readonly_field? %>
|
27
|
-
<% unless field.configured_to_display? %>
|
28
|
-
<p class="bg-warning help-block">
|
29
|
-
<%= t(:'.blank_field_warning_html',
|
30
|
-
link: link_to(t(:'spotlight.configuration.sidebar.metadata'), spotlight.edit_exhibit_metadata_configuration_path(current_exhibit))) %>
|
31
|
-
</p>
|
32
|
-
<% end %>
|
33
|
-
</div>
|
34
|
-
<% end %>
|
35
|
-
<% end %>
|
36
|
-
<% end %>
|
12
|
+
<%= render partial: 'edit_sidecar', locals: { document: document, f: f } %>
|
37
13
|
|
38
14
|
<% if can? :tag, current_exhibit %>
|
39
15
|
<div class="edit-tags">
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<%= f.fields_for :sidecar, document.sidecar(current_exhibit) do |c| %>
|
2
|
+
<%= c.fields_for :data do |d| %>
|
3
|
+
<% if document.uploaded_resource? %>
|
4
|
+
<%= d.fields_for :configured_fields do |e| %>
|
5
|
+
<% Spotlight::Resources::Upload.fields(current_exhibit).each do |config| %>
|
6
|
+
<%= e.send(config.form_field_type, config.field_name, value: (document.sidecar(current_exhibit).data["configured_fields"] || {})[config.field_name.to_s], label: uploaded_field_label(config)) %>
|
7
|
+
<% end %>
|
8
|
+
<% end %>
|
9
|
+
<% end %>
|
10
|
+
|
11
|
+
<%# Using `includes(:exhibit)` to ensure all fields are using the same exhibit object to take advantage of memoization %>
|
12
|
+
<% current_exhibit.custom_fields.includes(:exhibit).each do |field| %>
|
13
|
+
<div class="form-group">
|
14
|
+
<%= d.label field.field, field.label %>
|
15
|
+
<% if field.field_type == 'vocab' %>
|
16
|
+
<%= d.text_field_without_bootstrap field.field, value: document.sidecar(current_exhibit).data[field.field.to_s], class: "form-control field-#{field.slug}", readonly: field.readonly_field? %>
|
17
|
+
<% else %>
|
18
|
+
<%= d.text_area_without_bootstrap field.field, value: document.sidecar(current_exhibit).data[field.field.to_s], class: "form-control field-#{field.slug}", readonly: field.readonly_field? %>
|
19
|
+
<% end %>
|
20
|
+
<% unless field.configured_to_display? %>
|
21
|
+
<p class="bg-warning help-block">
|
22
|
+
<%= t(:'.blank_field_warning_html',
|
23
|
+
link: link_to(t(:'spotlight.configuration.sidebar.metadata'), spotlight.edit_exhibit_metadata_configuration_path(current_exhibit))) %>
|
24
|
+
</p>
|
25
|
+
<% end %>
|
26
|
+
</div>
|
27
|
+
<% end %>
|
28
|
+
<% end %>
|
29
|
+
<% end %>
|
@@ -227,9 +227,10 @@ en:
|
|
227
227
|
button: Make Public
|
228
228
|
label: ''
|
229
229
|
edit_default:
|
230
|
-
blank_field_warning_html: This field is currently hidden on all pages. You can make it visible on the Curation > %{link} page.
|
231
230
|
url-field:
|
232
231
|
help: 'Valid file types: %{extensions}'
|
232
|
+
edit_sidecar:
|
233
|
+
blank_field_warning_html: This field is currently hidden on all pages. You can make it visible on the Curation > %{link} page.
|
233
234
|
facets:
|
234
235
|
exhibit_visibility:
|
235
236
|
label: Item Visibility
|
@@ -0,0 +1,40 @@
|
|
1
|
+
it:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
spotlight/contact_form:
|
5
|
+
email: Email
|
6
|
+
message: Messaggio
|
7
|
+
name: Nome
|
8
|
+
helpers:
|
9
|
+
action:
|
10
|
+
cancel: Cancella
|
11
|
+
submit:
|
12
|
+
contact_form:
|
13
|
+
create: Invia
|
14
|
+
created: Grazie. Il tuo feedback è stato inviato.
|
15
|
+
spotlight:
|
16
|
+
about_pages:
|
17
|
+
contacts:
|
18
|
+
header: Contatti
|
19
|
+
header_links:
|
20
|
+
contact: Feedback
|
21
|
+
shared:
|
22
|
+
report_a_problem:
|
23
|
+
honeypot_field_explanation: Ignora questa casella di testo. E' impiegata per individuare chi agisce come spammer. Se si inserisci qualcosa in questa casella, il tuo messaggio non verrà inviato.
|
24
|
+
title: Contattaci
|
25
|
+
browse:
|
26
|
+
search:
|
27
|
+
item_count:
|
28
|
+
one: "%{count} elemento"
|
29
|
+
other: "%{count} elementi"
|
30
|
+
search_box:
|
31
|
+
label: Ricerca all'interno di questo indice
|
32
|
+
placeholder: Ricerca…
|
33
|
+
reset: Cancella la casella di ricerca
|
34
|
+
submit: Ricerca all'interno dell'indice
|
35
|
+
success:
|
36
|
+
expand_html: Puoi anche cercare tutti gli elementi del percorso per <a href="%{expand_search_url}">"%{browse_query}"</a>.
|
37
|
+
result_number_html: La tua ricerca ha trovato <strong> %{search_size} di %{parent_search_count} elementi</strong> in questo indice di ricerca.
|
38
|
+
zero_results:
|
39
|
+
expand_html: Puoi <a href="%{clear_search_url}">cancellare questa ricerca</a> o <a href="%{expand_search_url}">provare a cercare tutti gli elementi del percorso per "%{browse_query}"</a>.
|
40
|
+
result_number: La tua ricerca in questo indice non ha prodotto alcun risultato.
|
@@ -0,0 +1,40 @@
|
|
1
|
+
zh:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
spotlight/contact_form:
|
5
|
+
email: 电邮地址
|
6
|
+
message: 邮件
|
7
|
+
name: 姓名
|
8
|
+
helpers:
|
9
|
+
action:
|
10
|
+
cancel: 取消
|
11
|
+
submit:
|
12
|
+
contact_form:
|
13
|
+
create: 发送
|
14
|
+
created: 谢谢。您的信息已经发送。
|
15
|
+
spotlight:
|
16
|
+
about_pages:
|
17
|
+
contacts:
|
18
|
+
header: 联系人
|
19
|
+
header_links:
|
20
|
+
contact: 反馈
|
21
|
+
shared:
|
22
|
+
report_a_problem:
|
23
|
+
honeypot_field_explanation: 请勿使用这个对话框。此为防范垃圾邮件设置。如填入信息,该邮件将不会被发送。
|
24
|
+
title: 联系我们
|
25
|
+
browse:
|
26
|
+
search:
|
27
|
+
item_count:
|
28
|
+
one: "%{count} 资料"
|
29
|
+
other: "%{count} 资料"
|
30
|
+
search_box:
|
31
|
+
label: 检索该类资料
|
32
|
+
placeholder: 检索
|
33
|
+
reset: 清除
|
34
|
+
submit: 检索所有资料
|
35
|
+
success:
|
36
|
+
expand_html: <a href="%{expand_search_url}">您也可检索所有资料 "%{browse_query}"</a>.
|
37
|
+
result_number_html: 您的检索在本专题 <strong> %{search_size} of %{parent_search_count} 条资料中检索到</strong> 条.
|
38
|
+
zero_results:
|
39
|
+
expand_html: <a href="%{clear_search_url}">您可取消本次专题检索</a> 或检索所有资料 <a href="%{expand_search_url}">"%{browse_query}"</a>.
|
40
|
+
result_number: 找到0条结果
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rails/generators'
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
##
|
5
|
+
# spotlight:increase_paper_trail_column_size generator
|
6
|
+
class IncreasePaperTrailColumnSize < Rails::Generators::Base
|
7
|
+
source_root File.expand_path('templates', __dir__)
|
8
|
+
|
9
|
+
def add_paper_trail_column_size_increase_migration
|
10
|
+
rake 'db:migrate' # run migrations so that the versions table is created
|
11
|
+
copy_file(
|
12
|
+
'migrations/20180814221815_change_paper_trail_versions_object_column_to_medium_text.rb',
|
13
|
+
'db/migrate/20180814221815_change_paper_trail_versions_object_column_to_medium_text.rb'
|
14
|
+
)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
##
|
2
|
+
# A migration that updates the object column size on PaperTrail's version table
|
3
|
+
# This is in a generator template because our migrations run before PaperTrail is installed
|
4
|
+
class ChangePaperTrailVersionsObjectColumnToMediumText < ActiveRecord::Migration[5.1]
|
5
|
+
# See https://github.com/paper-trail-gem/paper_trail/blob/6c34a3dd5a5f8c1b042f458b7727c9d3bbf81a50/lib/generators/paper_trail/install/templates/create_versions.rb.erb#L5-L17
|
6
|
+
# for rationale of the 1,073,741,823 byte limit
|
7
|
+
|
8
|
+
def change
|
9
|
+
change_column :versions, :object, :text, limit: 1_073_741_823
|
10
|
+
end
|
11
|
+
end
|
data/lib/spotlight/version.rb
CHANGED
data/spec/examples.txt
CHANGED
@@ -1,1230 +1,1301 @@
|
|
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] |
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] |
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] |
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] |
|
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] |
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] |
|
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] |
|
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] |
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] |
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] |
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] |
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] |
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] |
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] |
|
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] |
|
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/
|
93
|
-
./spec/controllers/spotlight/
|
94
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:
|
95
|
-
./spec/controllers/spotlight/
|
96
|
-
./spec/controllers/spotlight/
|
97
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:
|
98
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:
|
99
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:
|
100
|
-
./spec/controllers/spotlight/
|
101
|
-
./spec/controllers/spotlight/
|
102
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:
|
103
|
-
./spec/controllers/spotlight/
|
104
|
-
./spec/controllers/spotlight/
|
105
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:
|
106
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
107
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:
|
108
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
109
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
110
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
111
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
112
|
-
./spec/controllers/spotlight/
|
113
|
-
./spec/controllers/spotlight/
|
114
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:
|
115
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:
|
116
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:
|
117
|
-
./spec/controllers/spotlight/
|
118
|
-
./spec/controllers/spotlight/
|
119
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:
|
120
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:
|
121
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:
|
122
|
-
./spec/controllers/spotlight/
|
123
|
-
./spec/controllers/spotlight/
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
127
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
128
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
129
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
130
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
131
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
132
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
133
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
134
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
135
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
136
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
137
|
-
./spec/controllers/spotlight/
|
138
|
-
./spec/controllers/spotlight/
|
139
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
140
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
141
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:
|
142
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:
|
143
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1]
|
144
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
145
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
146
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
147
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:
|
148
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2
|
149
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:
|
150
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
151
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
152
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:
|
153
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2
|
154
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:
|
155
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
156
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
157
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
158
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
159
|
-
./spec/controllers/spotlight/
|
160
|
-
./spec/controllers/spotlight/
|
161
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:
|
162
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:
|
163
|
-
./spec/controllers/spotlight/
|
164
|
-
./spec/controllers/spotlight/
|
165
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:
|
166
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1
|
167
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2
|
168
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:
|
169
|
-
./spec/controllers/spotlight/
|
170
|
-
./spec/controllers/spotlight/
|
171
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:
|
172
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:
|
173
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
174
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
175
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
176
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
177
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
178
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:
|
179
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:
|
180
|
-
./spec/controllers/spotlight/
|
181
|
-
./spec/controllers/spotlight/
|
182
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:
|
183
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:
|
184
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:
|
185
|
-
./spec/controllers/spotlight/languages_controller_spec.rb[1:
|
186
|
-
./spec/controllers/spotlight/
|
187
|
-
./spec/controllers/spotlight/
|
188
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:
|
189
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:
|
190
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:
|
191
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:
|
192
|
-
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:
|
193
|
-
./spec/controllers/spotlight/
|
194
|
-
./spec/controllers/spotlight/
|
195
|
-
./spec/controllers/spotlight/
|
196
|
-
./spec/controllers/spotlight/
|
197
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:
|
198
|
-
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:
|
199
|
-
./spec/controllers/spotlight/resources/
|
200
|
-
./spec/controllers/spotlight/resources/
|
201
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:
|
202
|
-
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:
|
203
|
-
./spec/controllers/spotlight/
|
204
|
-
./spec/controllers/spotlight/
|
205
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:
|
206
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:
|
207
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:
|
208
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:
|
209
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:
|
210
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:
|
211
|
-
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:
|
212
|
-
./spec/controllers/spotlight/
|
213
|
-
./spec/controllers/spotlight/
|
214
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:
|
215
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:
|
216
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:
|
217
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:
|
218
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:
|
219
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:
|
220
|
-
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:
|
221
|
-
./spec/controllers/spotlight/
|
222
|
-
./spec/controllers/spotlight/
|
223
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:
|
224
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:
|
225
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:
|
226
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:
|
227
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:
|
228
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:
|
229
|
-
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:
|
230
|
-
./spec/controllers/spotlight/
|
231
|
-
./spec/controllers/spotlight/
|
232
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:
|
233
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:
|
234
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
235
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
236
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
237
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
238
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
239
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
240
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
241
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:
|
242
|
-
./spec/controllers/spotlight/
|
243
|
-
./spec/controllers/spotlight/
|
244
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:
|
245
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:
|
246
|
-
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:
|
247
|
-
./spec/controllers/spotlight/
|
248
|
-
./spec/controllers/spotlight/
|
249
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:
|
250
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:
|
251
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:
|
252
|
-
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:
|
253
|
-
./spec/controllers/spotlight/
|
254
|
-
./spec/controllers/spotlight/
|
255
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:
|
256
|
-
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:
|
257
|
-
./spec/controllers/spotlight/
|
258
|
-
./spec/controllers/spotlight/
|
259
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:
|
260
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:
|
261
|
-
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:
|
262
|
-
./spec/controllers/spotlight/
|
263
|
-
./spec/controllers/spotlight/
|
264
|
-
./spec/controllers/spotlight/versions_controller_spec.rb[1:
|
265
|
-
./spec/controllers/spotlight/
|
266
|
-
./spec/controllers/spotlight/
|
267
|
-
./spec/
|
268
|
-
./spec/
|
269
|
-
./spec/features/
|
270
|
-
./spec/features/
|
271
|
-
./spec/features/
|
272
|
-
./spec/features/
|
273
|
-
./spec/features/add_custom_field_metadata_spec.rb[1:
|
274
|
-
./spec/features/
|
275
|
-
./spec/features/
|
276
|
-
./spec/features/add_iiif_manifest_spec.rb[1:
|
277
|
-
./spec/features/
|
278
|
-
./spec/features/
|
279
|
-
./spec/features/add_items_spec.rb[1:1:
|
280
|
-
./spec/features/add_items_spec.rb[1:1:
|
281
|
-
./spec/features/add_items_spec.rb[1:1:
|
282
|
-
./spec/features/add_items_spec.rb[1:
|
283
|
-
./spec/features/
|
284
|
-
./spec/features/
|
285
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:
|
286
|
-
./spec/features/autocomplete_typeahead_spec.rb[1:1:2
|
287
|
-
./spec/features/
|
288
|
-
./spec/features/
|
289
|
-
./spec/features/browse_category_admin_spec.rb[1:
|
290
|
-
./spec/features/browse_category_admin_spec.rb[1:
|
291
|
-
./spec/features/browse_category_admin_spec.rb[1:
|
292
|
-
./spec/features/browse_category_admin_spec.rb[1:3:
|
293
|
-
./spec/features/browse_category_admin_spec.rb[1:3:
|
294
|
-
./spec/features/browse_category_admin_spec.rb[1:3:
|
295
|
-
./spec/features/browse_category_admin_spec.rb[1:4
|
296
|
-
./spec/features/
|
297
|
-
./spec/features/
|
298
|
-
./spec/features/browse_category_spec.rb[1:1:1:
|
299
|
-
./spec/features/browse_category_spec.rb[1:1:2
|
300
|
-
./spec/features/browse_category_spec.rb[1:1:
|
301
|
-
./spec/features/browse_category_spec.rb[1:1:2:
|
302
|
-
./spec/features/browse_category_spec.rb[1:1:
|
303
|
-
./spec/features/browse_category_spec.rb[1:1:
|
304
|
-
./spec/features/browse_category_spec.rb[1:1:
|
305
|
-
./spec/features/browse_category_spec.rb[1:1:
|
306
|
-
./spec/features/browse_category_spec.rb[1:1:
|
307
|
-
./spec/features/
|
308
|
-
./spec/features/
|
309
|
-
./spec/features/catalog_spec.rb[1:
|
310
|
-
./spec/features/catalog_spec.rb[1:
|
311
|
-
./spec/features/
|
312
|
-
./spec/features/
|
313
|
-
./spec/features/
|
314
|
-
./spec/features/
|
315
|
-
./spec/features/create_exhibit_spec.rb[1:
|
316
|
-
./spec/features/create_exhibit_spec.rb[1:
|
317
|
-
./spec/features/
|
318
|
-
./spec/features/
|
319
|
-
./spec/features/
|
320
|
-
./spec/features/
|
321
|
-
./spec/features/
|
322
|
-
./spec/features/
|
323
|
-
./spec/features/edit_search_fields_spec.rb[1:1:
|
324
|
-
./spec/features/edit_search_fields_spec.rb[1:1:
|
325
|
-
./spec/features/edit_search_fields_spec.rb[1:1:
|
326
|
-
./spec/features/edit_search_fields_spec.rb[1:1:
|
327
|
-
./spec/features/
|
328
|
-
./spec/features/
|
329
|
-
./spec/features/exhibit_masthead_spec.rb[1:
|
330
|
-
./spec/features/exhibit_masthead_spec.rb[1:
|
331
|
-
./spec/features/
|
332
|
-
./spec/features/
|
333
|
-
./spec/features/
|
334
|
-
./spec/features/exhibits/
|
335
|
-
./spec/features/exhibits/administration_spec.rb[1:1:
|
336
|
-
./spec/features/exhibits/administration_spec.rb[1:1:
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.06723 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.30487 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.08085 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.10893 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.16135 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.24304 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.13666 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.25533 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.1152 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.10834 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.18312 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.14275 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.12022 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.11777 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.12649 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.14849 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.1196 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.09922 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.1154 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.02766 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.03325 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.02891 seconds |
|
25
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.06723 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.05502 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.08696 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.11477 seconds |
|
29
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.06084 seconds |
|
30
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.06042 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.06937 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.07058 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.07477 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.07497 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.07473 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.0723 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.10416 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.09889 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.13309 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.09338 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.08284 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.23362 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01232 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.00886 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.00929 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.05227 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.05084 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.16132 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.09548 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.09954 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.1295 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.06987 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.06878 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.22941 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.06556 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.10089 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.08203 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.39803 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.07066 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.06295 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.05823 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.07342 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.06706 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.07578 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.12618 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.10302 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.08588 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.21993 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.17562 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.16905 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.07865 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.07746 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.08712 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.04957 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.05748 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07143 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.10598 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.08894 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.0973 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.09197 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01048 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01003 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.05328 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.05302 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.04937 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.01077 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.00827 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01144 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.04701 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.04779 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.04766 seconds |
|
92
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:1] | passed | 0.0594 seconds |
|
93
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:2] | passed | 0.0647 seconds |
|
94
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.06203 seconds |
|
95
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.02748 seconds |
|
96
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.87953 seconds |
|
97
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.05278 seconds |
|
98
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.07106 seconds |
|
99
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.06767 seconds |
|
100
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.06483 seconds |
|
101
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.06622 seconds |
|
102
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.20944 seconds |
|
103
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.0876 seconds |
|
104
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.07709 seconds |
|
105
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.05456 seconds |
|
106
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.07872 seconds |
|
107
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.0713 seconds |
|
108
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.08632 seconds |
|
109
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.0692 seconds |
|
110
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.06917 seconds |
|
111
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.07661 seconds |
|
112
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.06972 seconds |
|
113
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.06971 seconds |
|
114
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.07943 seconds |
|
115
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.07657 seconds |
|
116
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.06767 seconds |
|
117
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.06685 seconds |
|
118
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.06949 seconds |
|
119
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.10425 seconds |
|
120
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.08332 seconds |
|
121
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.07025 seconds |
|
122
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.06292 seconds |
|
123
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.05108 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.0624 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.03538 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.04967 seconds |
|
127
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.05439 seconds |
|
128
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.05091 seconds |
|
129
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.05166 seconds |
|
130
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.05034 seconds |
|
131
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.03506 seconds |
|
132
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.08026 seconds |
|
133
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.06873 seconds |
|
134
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.07408 seconds |
|
135
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.07982 seconds |
|
136
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.09986 seconds |
|
137
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.07843 seconds |
|
138
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.10382 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.08755 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.1477 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.14476 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.11275 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.10693 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.10573 seconds |
|
145
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.11862 seconds |
|
146
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.14425 seconds |
|
147
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.10769 seconds |
|
148
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.09569 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.09398 seconds |
|
150
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.08243 seconds |
|
151
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.08584 seconds |
|
152
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.09785 seconds |
|
153
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.10919 seconds |
|
154
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.10616 seconds |
|
155
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.09574 seconds |
|
156
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.10165 seconds |
|
157
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.12316 seconds |
|
158
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.16135 seconds |
|
159
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.10465 seconds |
|
160
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.11184 seconds |
|
161
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.0266 seconds |
|
162
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.03125 seconds |
|
163
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.0329 seconds |
|
164
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.03345 seconds |
|
165
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.05168 seconds |
|
166
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.08026 seconds |
|
167
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.06847 seconds |
|
168
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.05462 seconds |
|
169
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.06858 seconds |
|
170
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.07233 seconds |
|
171
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.09323 seconds |
|
172
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.12215 seconds |
|
173
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.12609 seconds |
|
174
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.10143 seconds |
|
175
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.07753 seconds |
|
176
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.0887 seconds |
|
177
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.14715 seconds |
|
178
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.08527 seconds |
|
179
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.14706 seconds |
|
180
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.12398 seconds |
|
181
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.10422 seconds |
|
182
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.05036 seconds |
|
183
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.08824 seconds |
|
184
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.08718 seconds |
|
185
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.08366 seconds |
|
186
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.0521 seconds |
|
187
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.07653 seconds |
|
188
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06389 seconds |
|
189
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.06026 seconds |
|
190
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05005 seconds |
|
191
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.05022 seconds |
|
192
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.07507 seconds |
|
193
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.07507 seconds |
|
194
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.08084 seconds |
|
195
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.09455 seconds |
|
196
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.07398 seconds |
|
197
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.04982 seconds |
|
198
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.0659 seconds |
|
199
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.06347 seconds |
|
200
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.06934 seconds |
|
201
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.05605 seconds |
|
202
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.09114 seconds |
|
203
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.08638 seconds |
|
204
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.08678 seconds |
|
205
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.05721 seconds |
|
206
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.04961 seconds |
|
207
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.04929 seconds |
|
208
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.0482 seconds |
|
209
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.07478 seconds |
|
210
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.08764 seconds |
|
211
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.07575 seconds |
|
212
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.07393 seconds |
|
213
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.06808 seconds |
|
214
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.07057 seconds |
|
215
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.08572 seconds |
|
216
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.07979 seconds |
|
217
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.42852 seconds |
|
218
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.07337 seconds |
|
219
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.06722 seconds |
|
220
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.06614 seconds |
|
221
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.07219 seconds |
|
222
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.07279 seconds |
|
223
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06308 seconds |
|
224
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05035 seconds |
|
225
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.04822 seconds |
|
226
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.07769 seconds |
|
227
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.0721 seconds |
|
228
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.07361 seconds |
|
229
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.07872 seconds |
|
230
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.08161 seconds |
|
231
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.08003 seconds |
|
232
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.06383 seconds |
|
233
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.06002 seconds |
|
234
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.0737 seconds |
|
235
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.08797 seconds |
|
236
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.11549 seconds |
|
237
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.11622 seconds |
|
238
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.1031 seconds |
|
239
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.08649 seconds |
|
240
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.08387 seconds |
|
241
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.09475 seconds |
|
242
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.09128 seconds |
|
243
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.10841 seconds |
|
244
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.02547 seconds |
|
245
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.03757 seconds |
|
246
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.03443 seconds |
|
247
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.11514 seconds |
|
248
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.07024 seconds |
|
249
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.05913 seconds |
|
250
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.07765 seconds |
|
251
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.07055 seconds |
|
252
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.06877 seconds |
|
253
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.07425 seconds |
|
254
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.07889 seconds |
|
255
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.06368 seconds |
|
256
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.08696 seconds |
|
257
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.07308 seconds |
|
258
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.08129 seconds |
|
259
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.0497 seconds |
|
260
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.07402 seconds |
|
261
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.04916 seconds |
|
262
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.09496 seconds |
|
263
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.0818 seconds |
|
264
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.01588 seconds |
|
265
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.08909 seconds |
|
266
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.12261 seconds |
|
267
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06662 seconds |
|
268
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.07223 seconds |
|
269
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 26.27 seconds |
|
270
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.45319 seconds |
|
271
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.7875 seconds |
|
272
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.06664 seconds |
|
273
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 3.66 seconds |
|
274
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.22152 seconds |
|
275
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.73995 seconds |
|
276
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 2.13 seconds |
|
277
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.45864 seconds |
|
278
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.34089 seconds |
|
279
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.11701 seconds |
|
280
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.53033 seconds |
|
281
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.11812 seconds |
|
282
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.13242 seconds |
|
283
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.15182 seconds |
|
284
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.86231 seconds |
|
285
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 3.12 seconds |
|
286
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 2.57 seconds |
|
287
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.64 seconds |
|
288
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.82182 seconds |
|
289
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.17402 seconds |
|
290
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.13 seconds |
|
291
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.91325 seconds |
|
292
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.18576 seconds |
|
293
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.27441 seconds |
|
294
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.23514 seconds |
|
295
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.23239 seconds |
|
296
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.23238 seconds |
|
297
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.06941 seconds |
|
298
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.13876 seconds |
|
299
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.13034 seconds |
|
300
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.13303 seconds |
|
301
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.14102 seconds |
|
302
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.13424 seconds |
|
303
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.13595 seconds |
|
304
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.6542 seconds |
|
305
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.14216 seconds |
|
306
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.23315 seconds |
|
307
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.24405 seconds |
|
308
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.50899 seconds |
|
309
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.65068 seconds |
|
310
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.11174 seconds |
|
311
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.07381 seconds |
|
312
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.12689 seconds |
|
313
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.26413 seconds |
|
314
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.13141 seconds |
|
315
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.13161 seconds |
|
316
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.97644 seconds |
|
317
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.22721 seconds |
|
318
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.25566 seconds |
|
319
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.28483 seconds |
|
320
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.19481 seconds |
|
321
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.18878 seconds |
|
322
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.27766 seconds |
|
323
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.22258 seconds |
|
324
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.14793 seconds |
|
325
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.1355 seconds |
|
326
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.27992 seconds |
|
327
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.14797 seconds |
|
328
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.27552 seconds |
|
329
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.39301 seconds |
|
330
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.31879 seconds |
|
331
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.32494 seconds |
|
332
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.06484 seconds |
|
333
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.30656 seconds |
|
334
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 1.6 seconds |
|
335
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.22441 seconds |
|
336
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.12101 seconds |
|
337
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.28867 seconds |
|
338
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.27 seconds |
|
337
339
|
./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.
|
339
|
-
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.
|
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 | 0.
|
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/
|
389
|
-
./spec/features/
|
390
|
-
./spec/features/
|
391
|
-
./spec/features/
|
392
|
-
./spec/features/
|
393
|
-
./spec/features/
|
394
|
-
./spec/features/
|
395
|
-
./spec/features/
|
396
|
-
./spec/features/
|
397
|
-
./spec/features/
|
398
|
-
./spec/features/
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/
|
401
|
-
./spec/features/javascript/
|
402
|
-
./spec/features/javascript/
|
403
|
-
./spec/features/javascript/
|
404
|
-
./spec/features/javascript/
|
405
|
-
./spec/features/javascript/
|
406
|
-
./spec/features/javascript/
|
407
|
-
./spec/features/javascript/
|
408
|
-
./spec/features/javascript/
|
409
|
-
./spec/features/javascript/
|
410
|
-
./spec/features/javascript/
|
411
|
-
./spec/features/javascript/
|
412
|
-
./spec/features/javascript/
|
413
|
-
./spec/features/javascript/
|
414
|
-
./spec/features/javascript/
|
415
|
-
./spec/features/javascript/
|
416
|
-
./spec/features/javascript/
|
417
|
-
./spec/features/
|
418
|
-
./spec/features/
|
419
|
-
./spec/features/
|
420
|
-
./spec/features/
|
421
|
-
./spec/features/
|
422
|
-
./spec/features/
|
423
|
-
./spec/features/
|
424
|
-
./spec/features/
|
425
|
-
./spec/features/
|
426
|
-
./spec/features/
|
427
|
-
./spec/features/
|
428
|
-
./spec/features/
|
429
|
-
./spec/features/
|
430
|
-
./spec/features/
|
431
|
-
./spec/features/
|
432
|
-
./spec/features/
|
433
|
-
./spec/features/
|
434
|
-
./spec/features/
|
435
|
-
./spec/features/
|
436
|
-
./spec/features/
|
437
|
-
./spec/features/
|
438
|
-
./spec/features/
|
439
|
-
./spec/features/
|
440
|
-
./spec/features/
|
441
|
-
./spec/features/
|
442
|
-
./spec/
|
443
|
-
./spec/
|
444
|
-
./spec/
|
445
|
-
./spec/
|
446
|
-
./spec/
|
447
|
-
./spec/
|
448
|
-
./spec/
|
449
|
-
./spec/
|
450
|
-
./spec/
|
451
|
-
./spec/
|
452
|
-
./spec/
|
453
|
-
./spec/
|
454
|
-
./spec/
|
455
|
-
./spec/
|
456
|
-
./spec/
|
457
|
-
./spec/
|
458
|
-
./spec/
|
459
|
-
./spec/
|
460
|
-
./spec/
|
461
|
-
./spec/
|
462
|
-
./spec/
|
463
|
-
./spec/
|
464
|
-
./spec/
|
465
|
-
./spec/
|
466
|
-
./spec/
|
467
|
-
./spec/
|
468
|
-
./spec/
|
469
|
-
./spec/
|
470
|
-
./spec/
|
471
|
-
./spec/
|
472
|
-
./spec/
|
473
|
-
./spec/
|
474
|
-
./spec/
|
475
|
-
./spec/
|
476
|
-
./spec/
|
477
|
-
./spec/helpers/spotlight/
|
478
|
-
./spec/helpers/spotlight/
|
479
|
-
./spec/helpers/spotlight/
|
480
|
-
./spec/helpers/spotlight/
|
481
|
-
./spec/helpers/spotlight/
|
482
|
-
./spec/helpers/spotlight/
|
483
|
-
./spec/helpers/spotlight/
|
484
|
-
./spec/helpers/spotlight/
|
485
|
-
./spec/helpers/spotlight/
|
486
|
-
./spec/helpers/spotlight/
|
487
|
-
./spec/helpers/spotlight/
|
488
|
-
./spec/helpers/spotlight/
|
489
|
-
./spec/helpers/spotlight/
|
490
|
-
./spec/helpers/spotlight/
|
491
|
-
./spec/helpers/spotlight/
|
492
|
-
./spec/helpers/spotlight/
|
493
|
-
./spec/helpers/spotlight/
|
494
|
-
./spec/helpers/spotlight/
|
495
|
-
./spec/helpers/spotlight/
|
496
|
-
./spec/helpers/spotlight/
|
497
|
-
./spec/helpers/spotlight/
|
498
|
-
./spec/helpers/spotlight/
|
499
|
-
./spec/helpers/spotlight/
|
500
|
-
./spec/helpers/spotlight/
|
501
|
-
./spec/helpers/spotlight/
|
502
|
-
./spec/helpers/spotlight/
|
503
|
-
./spec/helpers/spotlight/
|
504
|
-
./spec/helpers/spotlight/
|
505
|
-
./spec/helpers/spotlight/
|
506
|
-
./spec/helpers/spotlight/
|
507
|
-
./spec/helpers/spotlight/
|
508
|
-
./spec/helpers/spotlight/
|
509
|
-
./spec/helpers/spotlight/
|
510
|
-
./spec/helpers/spotlight/
|
511
|
-
./spec/helpers/spotlight/
|
512
|
-
./spec/helpers/spotlight/
|
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/
|
521
|
-
./spec/helpers/spotlight/
|
522
|
-
./spec/helpers/spotlight/
|
523
|
-
./spec/
|
524
|
-
./spec/
|
525
|
-
./spec/
|
526
|
-
./spec/
|
527
|
-
./spec/
|
528
|
-
./spec/
|
529
|
-
./spec/
|
530
|
-
./spec/
|
531
|
-
./spec/
|
532
|
-
./spec/
|
533
|
-
./spec/
|
534
|
-
./spec/
|
535
|
-
./spec/
|
536
|
-
./spec/
|
537
|
-
./spec/
|
538
|
-
./spec/
|
539
|
-
./spec/
|
540
|
-
./spec/
|
541
|
-
./spec/
|
542
|
-
./spec/
|
543
|
-
./spec/
|
544
|
-
./spec/
|
545
|
-
./spec/
|
546
|
-
./spec/
|
547
|
-
./spec/
|
548
|
-
./spec/
|
549
|
-
./spec/
|
550
|
-
./spec/
|
551
|
-
./spec/
|
552
|
-
./spec/
|
553
|
-
./spec/
|
554
|
-
./spec/
|
555
|
-
./spec/
|
556
|
-
./spec/
|
557
|
-
./spec/
|
558
|
-
./spec/
|
559
|
-
./spec/
|
560
|
-
./spec/
|
561
|
-
./spec/
|
562
|
-
./spec/
|
563
|
-
./spec/
|
564
|
-
./spec/
|
565
|
-
./spec/
|
566
|
-
./spec/
|
567
|
-
./spec/
|
568
|
-
./spec/
|
569
|
-
./spec/
|
570
|
-
./spec/
|
571
|
-
./spec/
|
572
|
-
./spec/
|
573
|
-
./spec/
|
574
|
-
./spec/
|
575
|
-
./spec/
|
576
|
-
./spec/
|
577
|
-
./spec/
|
578
|
-
./spec/
|
579
|
-
./spec/
|
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/
|
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/
|
618
|
-
./spec/models/
|
619
|
-
./spec/models/
|
620
|
-
./spec/models/
|
621
|
-
./spec/models/
|
622
|
-
./spec/models/
|
623
|
-
./spec/models/
|
624
|
-
./spec/models/
|
625
|
-
./spec/models/
|
626
|
-
./spec/models/
|
627
|
-
./spec/models/
|
628
|
-
./spec/models/
|
629
|
-
./spec/models/
|
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/
|
647
|
-
./spec/models/spotlight/
|
648
|
-
./spec/models/spotlight/
|
649
|
-
./spec/models/spotlight/
|
650
|
-
./spec/models/spotlight/
|
651
|
-
./spec/models/spotlight/
|
652
|
-
./spec/models/spotlight/
|
653
|
-
./spec/models/spotlight/
|
654
|
-
./spec/models/spotlight/
|
655
|
-
./spec/models/spotlight/
|
656
|
-
./spec/models/spotlight/
|
657
|
-
./spec/models/spotlight/
|
658
|
-
./spec/models/spotlight/
|
659
|
-
./spec/models/spotlight/
|
660
|
-
./spec/models/spotlight/
|
661
|
-
./spec/models/spotlight/
|
662
|
-
./spec/models/spotlight/
|
663
|
-
./spec/models/spotlight/
|
664
|
-
./spec/models/spotlight/
|
665
|
-
./spec/models/spotlight/
|
666
|
-
./spec/models/spotlight/
|
667
|
-
./spec/models/spotlight/
|
668
|
-
./spec/models/spotlight/
|
669
|
-
./spec/models/spotlight/
|
670
|
-
./spec/models/spotlight/
|
671
|
-
./spec/models/spotlight/
|
672
|
-
./spec/models/spotlight/
|
673
|
-
./spec/models/spotlight/
|
674
|
-
./spec/models/spotlight/
|
675
|
-
./spec/models/spotlight/
|
676
|
-
./spec/models/spotlight/
|
677
|
-
./spec/models/spotlight/
|
678
|
-
./spec/models/spotlight/
|
679
|
-
./spec/models/spotlight/
|
680
|
-
./spec/models/spotlight/
|
681
|
-
./spec/models/spotlight/
|
682
|
-
./spec/models/spotlight/
|
683
|
-
./spec/models/spotlight/
|
684
|
-
./spec/models/spotlight/
|
685
|
-
./spec/models/spotlight/
|
686
|
-
./spec/models/spotlight/
|
687
|
-
./spec/models/spotlight/
|
688
|
-
./spec/models/spotlight/
|
689
|
-
./spec/models/spotlight/
|
690
|
-
./spec/models/spotlight/
|
691
|
-
./spec/models/spotlight/
|
692
|
-
./spec/models/spotlight/
|
693
|
-
./spec/models/spotlight/
|
694
|
-
./spec/models/spotlight/
|
695
|
-
./spec/models/spotlight/
|
696
|
-
./spec/models/spotlight/
|
697
|
-
./spec/models/spotlight/
|
698
|
-
./spec/models/spotlight/
|
699
|
-
./spec/models/spotlight/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:
|
711
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
712
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
713
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
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/
|
725
|
-
./spec/models/spotlight/
|
726
|
-
./spec/models/spotlight/
|
727
|
-
./spec/models/spotlight/
|
728
|
-
./spec/models/spotlight/
|
729
|
-
./spec/models/spotlight/
|
730
|
-
./spec/models/spotlight/
|
731
|
-
./spec/models/spotlight/
|
732
|
-
./spec/models/spotlight/
|
733
|
-
./spec/models/spotlight/
|
734
|
-
./spec/models/spotlight/
|
735
|
-
./spec/models/spotlight/
|
736
|
-
./spec/models/spotlight/
|
737
|
-
./spec/models/spotlight/
|
738
|
-
./spec/models/spotlight/
|
739
|
-
./spec/models/spotlight/
|
740
|
-
./spec/models/spotlight/
|
741
|
-
./spec/models/spotlight/
|
742
|
-
./spec/models/spotlight/
|
743
|
-
./spec/models/spotlight/
|
744
|
-
./spec/models/spotlight/
|
745
|
-
./spec/models/spotlight/
|
746
|
-
./spec/models/spotlight/
|
747
|
-
./spec/models/spotlight/
|
748
|
-
./spec/models/spotlight/
|
749
|
-
./spec/models/spotlight/
|
750
|
-
./spec/models/spotlight/
|
751
|
-
./spec/models/spotlight/
|
752
|
-
./spec/models/spotlight/
|
753
|
-
./spec/models/spotlight/
|
754
|
-
./spec/models/spotlight/
|
755
|
-
./spec/models/spotlight/
|
756
|
-
./spec/models/spotlight/
|
757
|
-
./spec/models/spotlight/
|
758
|
-
./spec/models/spotlight/
|
759
|
-
./spec/models/spotlight/
|
760
|
-
./spec/models/spotlight/
|
761
|
-
./spec/models/spotlight/
|
762
|
-
./spec/models/spotlight/
|
763
|
-
./spec/models/spotlight/
|
764
|
-
./spec/models/spotlight/
|
765
|
-
./spec/models/spotlight/
|
766
|
-
./spec/models/spotlight/
|
767
|
-
./spec/models/spotlight/
|
768
|
-
./spec/models/spotlight/
|
769
|
-
./spec/models/spotlight/
|
770
|
-
./spec/models/spotlight/
|
771
|
-
./spec/models/spotlight/
|
772
|
-
./spec/models/spotlight/
|
773
|
-
./spec/models/spotlight/
|
774
|
-
./spec/models/spotlight/
|
775
|
-
./spec/models/spotlight/
|
776
|
-
./spec/models/spotlight/
|
777
|
-
./spec/models/spotlight/
|
778
|
-
./spec/models/spotlight/
|
779
|
-
./spec/models/spotlight/
|
780
|
-
./spec/models/spotlight/
|
781
|
-
./spec/models/spotlight/
|
782
|
-
./spec/models/spotlight/
|
783
|
-
./spec/models/spotlight/
|
784
|
-
./spec/models/spotlight/
|
785
|
-
./spec/models/spotlight/
|
786
|
-
./spec/models/spotlight/
|
787
|
-
./spec/models/spotlight/
|
788
|
-
./spec/models/spotlight/
|
789
|
-
./spec/models/spotlight/
|
790
|
-
./spec/models/spotlight/
|
791
|
-
./spec/models/spotlight/
|
792
|
-
./spec/models/spotlight/
|
793
|
-
./spec/models/spotlight/
|
794
|
-
./spec/models/spotlight/
|
795
|
-
./spec/models/spotlight/
|
796
|
-
./spec/models/spotlight/
|
797
|
-
./spec/models/spotlight/
|
798
|
-
./spec/models/spotlight/
|
799
|
-
./spec/models/spotlight/
|
800
|
-
./spec/models/spotlight/
|
801
|
-
./spec/models/spotlight/
|
802
|
-
./spec/models/spotlight/
|
803
|
-
./spec/models/spotlight/
|
804
|
-
./spec/models/spotlight/
|
805
|
-
./spec/models/spotlight/
|
806
|
-
./spec/models/spotlight/
|
807
|
-
./spec/models/spotlight/
|
808
|
-
./spec/models/spotlight/
|
809
|
-
./spec/models/spotlight/
|
810
|
-
./spec/models/spotlight/
|
811
|
-
./spec/models/spotlight/
|
812
|
-
./spec/models/spotlight/
|
813
|
-
./spec/models/spotlight/
|
814
|
-
./spec/models/spotlight/
|
815
|
-
./spec/models/spotlight/
|
816
|
-
./spec/models/spotlight/
|
817
|
-
./spec/models/spotlight/
|
818
|
-
./spec/models/spotlight/
|
819
|
-
./spec/models/spotlight/
|
820
|
-
./spec/models/spotlight/
|
821
|
-
./spec/models/spotlight/
|
822
|
-
./spec/models/spotlight/
|
823
|
-
./spec/models/spotlight/
|
824
|
-
./spec/models/spotlight/
|
825
|
-
./spec/models/spotlight/
|
826
|
-
./spec/models/spotlight/
|
827
|
-
./spec/models/spotlight/
|
828
|
-
./spec/models/spotlight/
|
829
|
-
./spec/models/spotlight/
|
830
|
-
./spec/models/spotlight/
|
831
|
-
./spec/models/spotlight/
|
832
|
-
./spec/models/spotlight/
|
833
|
-
./spec/models/spotlight/
|
834
|
-
./spec/models/spotlight/
|
835
|
-
./spec/models/spotlight/
|
836
|
-
./spec/models/spotlight/
|
837
|
-
./spec/models/spotlight/
|
838
|
-
./spec/models/spotlight/
|
839
|
-
./spec/models/spotlight/
|
840
|
-
./spec/models/spotlight/
|
841
|
-
./spec/models/spotlight/
|
842
|
-
./spec/models/spotlight/
|
843
|
-
./spec/models/spotlight/
|
844
|
-
./spec/models/spotlight/
|
845
|
-
./spec/models/spotlight/
|
846
|
-
./spec/models/spotlight/
|
847
|
-
./spec/models/spotlight/
|
848
|
-
./spec/models/spotlight/
|
849
|
-
./spec/models/spotlight/
|
850
|
-
./spec/models/spotlight/
|
851
|
-
./spec/models/spotlight/
|
852
|
-
./spec/models/spotlight/
|
853
|
-
./spec/models/spotlight/
|
854
|
-
./spec/models/spotlight/
|
855
|
-
./spec/models/spotlight/
|
856
|
-
./spec/models/spotlight/
|
857
|
-
./spec/models/spotlight/
|
858
|
-
./spec/models/spotlight/
|
859
|
-
./spec/models/spotlight/
|
860
|
-
./spec/models/spotlight/
|
861
|
-
./spec/models/spotlight/
|
862
|
-
./spec/models/spotlight/
|
863
|
-
./spec/models/spotlight/
|
864
|
-
./spec/models/spotlight/
|
865
|
-
./spec/models/spotlight/
|
866
|
-
./spec/models/spotlight/
|
867
|
-
./spec/models/spotlight/
|
868
|
-
./spec/models/spotlight/
|
869
|
-
./spec/models/spotlight/
|
870
|
-
./spec/models/spotlight/
|
871
|
-
./spec/models/spotlight/
|
872
|
-
./spec/models/spotlight/
|
873
|
-
./spec/models/spotlight/
|
874
|
-
./spec/models/spotlight/
|
875
|
-
./spec/models/spotlight/
|
876
|
-
./spec/models/spotlight/
|
877
|
-
./spec/models/spotlight/
|
878
|
-
./spec/models/spotlight/
|
879
|
-
./spec/models/spotlight/
|
880
|
-
./spec/models/spotlight/
|
881
|
-
./spec/models/spotlight/
|
882
|
-
./spec/models/spotlight/
|
883
|
-
./spec/models/spotlight/
|
884
|
-
./spec/models/spotlight/
|
885
|
-
./spec/models/spotlight/
|
886
|
-
./spec/models/spotlight/
|
887
|
-
./spec/models/spotlight/
|
888
|
-
./spec/models/spotlight/
|
889
|
-
./spec/models/spotlight/
|
890
|
-
./spec/models/spotlight/
|
891
|
-
./spec/models/spotlight/
|
892
|
-
./spec/models/spotlight/
|
893
|
-
./spec/models/spotlight/
|
894
|
-
./spec/models/spotlight/
|
895
|
-
./spec/models/spotlight/
|
896
|
-
./spec/models/spotlight/
|
897
|
-
./spec/models/spotlight/
|
898
|
-
./spec/models/spotlight/
|
899
|
-
./spec/models/spotlight/
|
900
|
-
./spec/models/spotlight/
|
901
|
-
./spec/models/spotlight/
|
902
|
-
./spec/models/spotlight/
|
903
|
-
./spec/models/spotlight/
|
904
|
-
./spec/models/spotlight/
|
905
|
-
./spec/models/spotlight/
|
906
|
-
./spec/models/spotlight/
|
907
|
-
./spec/models/spotlight/
|
908
|
-
./spec/models/spotlight/
|
909
|
-
./spec/models/spotlight/
|
910
|
-
./spec/models/spotlight/
|
911
|
-
./spec/models/spotlight/
|
912
|
-
./spec/models/spotlight/
|
913
|
-
./spec/models/spotlight/
|
914
|
-
./spec/models/spotlight/
|
915
|
-
./spec/models/spotlight/
|
916
|
-
./spec/models/spotlight/
|
917
|
-
./spec/models/spotlight/
|
918
|
-
./spec/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/
|
948
|
-
./spec/models/spotlight/
|
949
|
-
./spec/models/spotlight/
|
950
|
-
./spec/models/spotlight/
|
951
|
-
./spec/models/spotlight/
|
952
|
-
./spec/models/spotlight/
|
953
|
-
./spec/models/spotlight/
|
954
|
-
./spec/models/spotlight/
|
955
|
-
./spec/models/spotlight/
|
956
|
-
./spec/models/spotlight/
|
957
|
-
./spec/models/spotlight/
|
958
|
-
./spec/models/spotlight/
|
959
|
-
./spec/models/spotlight/
|
960
|
-
./spec/models/spotlight/
|
961
|
-
./spec/models/spotlight/
|
962
|
-
./spec/models/spotlight/
|
963
|
-
./spec/models/spotlight/
|
964
|
-
./spec/models/spotlight/
|
965
|
-
./spec/models/spotlight/
|
966
|
-
./spec/models/spotlight/
|
967
|
-
./spec/models/spotlight/
|
968
|
-
./spec/models/spotlight/
|
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/
|
980
|
-
./spec/
|
981
|
-
./spec/
|
982
|
-
./spec/
|
983
|
-
./spec/
|
984
|
-
./spec/
|
985
|
-
./spec/
|
986
|
-
./spec/
|
987
|
-
./spec/
|
988
|
-
./spec/
|
989
|
-
./spec/
|
990
|
-
./spec/
|
991
|
-
./spec/
|
992
|
-
./spec/
|
993
|
-
./spec/
|
994
|
-
./spec/
|
995
|
-
./spec/
|
996
|
-
./spec/
|
997
|
-
./spec/
|
998
|
-
./spec/
|
999
|
-
./spec/
|
1000
|
-
./spec/
|
1001
|
-
./spec/
|
1002
|
-
./spec/
|
1003
|
-
./spec/
|
1004
|
-
./spec/
|
1005
|
-
./spec/
|
1006
|
-
./spec/
|
1007
|
-
./spec/
|
1008
|
-
./spec/
|
1009
|
-
./spec/
|
1010
|
-
./spec/
|
1011
|
-
./spec/
|
1012
|
-
./spec/
|
1013
|
-
./spec/
|
1014
|
-
./spec/
|
1015
|
-
./spec/
|
1016
|
-
./spec/
|
1017
|
-
./spec/
|
1018
|
-
./spec/
|
1019
|
-
./spec/
|
1020
|
-
./spec/
|
1021
|
-
./spec/
|
1022
|
-
./spec/
|
1023
|
-
./spec/
|
1024
|
-
./spec/
|
1025
|
-
./spec/
|
1026
|
-
./spec/
|
1027
|
-
./spec/
|
1028
|
-
./spec/
|
1029
|
-
./spec/
|
1030
|
-
./spec/
|
1031
|
-
./spec/
|
1032
|
-
./spec/
|
1033
|
-
./spec/
|
1034
|
-
./spec/
|
1035
|
-
./spec/
|
1036
|
-
./spec/
|
1037
|
-
./spec/
|
1038
|
-
./spec/
|
1039
|
-
./spec/
|
1040
|
-
./spec/
|
1041
|
-
./spec/
|
1042
|
-
./spec/
|
1043
|
-
./spec/
|
1044
|
-
./spec/
|
1045
|
-
./spec/
|
1046
|
-
./spec/
|
1047
|
-
./spec/
|
1048
|
-
./spec/
|
1049
|
-
./spec/
|
1050
|
-
./spec/
|
1051
|
-
./spec/
|
1052
|
-
./spec/
|
1053
|
-
./spec/
|
1054
|
-
./spec/
|
1055
|
-
./spec/
|
1056
|
-
./spec/
|
1057
|
-
./spec/
|
1058
|
-
./spec/
|
1059
|
-
./spec/
|
1060
|
-
./spec/
|
1061
|
-
./spec/
|
1062
|
-
./spec/
|
1063
|
-
./spec/
|
1064
|
-
./spec/
|
1065
|
-
./spec/
|
1066
|
-
./spec/
|
1067
|
-
./spec/
|
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/
|
1115
|
-
./spec/
|
1116
|
-
./spec/
|
1117
|
-
./spec/
|
1118
|
-
./spec/
|
1119
|
-
./spec/
|
1120
|
-
./spec/
|
1121
|
-
./spec/
|
1122
|
-
./spec/
|
1123
|
-
./spec/views/
|
1124
|
-
./spec/views/
|
1125
|
-
./spec/views/
|
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/
|
1150
|
-
./spec/views/
|
1151
|
-
./spec/views/
|
1152
|
-
./spec/views/
|
1153
|
-
./spec/views/
|
1154
|
-
./spec/views/
|
1155
|
-
./spec/views/
|
1156
|
-
./spec/views/
|
1157
|
-
./spec/views/
|
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/
|
340
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.84741 seconds |
|
341
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.90568 seconds |
|
342
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.68727 seconds |
|
343
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.1966 seconds |
|
344
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.46921 seconds |
|
345
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.44087 seconds |
|
346
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 0.98443 seconds |
|
347
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.14248 seconds |
|
348
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.31115 seconds |
|
349
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.33565 seconds |
|
350
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.30985 seconds |
|
351
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 0.32361 seconds |
|
352
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 0.44742 seconds |
|
353
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 0.72761 seconds |
|
354
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 0.81893 seconds |
|
355
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 0.61531 seconds |
|
356
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 0.50102 seconds |
|
357
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 0.55529 seconds |
|
358
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 0.70601 seconds |
|
359
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 0.66838 seconds |
|
360
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 3.95 seconds |
|
361
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 2.8 seconds |
|
362
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 0.44982 seconds |
|
363
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 0.19675 seconds |
|
364
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 4.56 seconds |
|
365
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 0.31802 seconds |
|
366
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 2.62 seconds |
|
367
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 0.43209 seconds |
|
368
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 0.18285 seconds |
|
369
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 1.59 seconds |
|
370
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 0.1893 seconds |
|
371
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 1.54 seconds |
|
372
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 0.18084 seconds |
|
373
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 1.42 seconds |
|
374
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 0.22474 seconds |
|
375
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 0.41922 seconds |
|
376
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | passed | 1.21 seconds |
|
377
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 0.22863 seconds |
|
378
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:6:1] | passed | 0.37776 seconds |
|
379
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.15793 seconds |
|
380
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.19912 seconds |
|
381
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.16021 seconds |
|
382
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.17038 seconds |
|
383
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.1621 seconds |
|
384
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.16237 seconds |
|
385
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.1949 seconds |
|
386
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.37679 seconds |
|
387
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.27834 seconds |
|
388
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.21841 seconds |
|
389
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.59 seconds |
|
390
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.32097 seconds |
|
391
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 9.08 seconds |
|
392
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.93064 seconds |
|
393
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.23065 seconds |
|
394
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.15579 seconds |
|
395
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 1.53 seconds |
|
396
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.12114 seconds |
|
397
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.03 seconds |
|
398
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.24 seconds |
|
399
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.2124 seconds |
|
400
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.20922 seconds |
|
401
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.56558 seconds |
|
402
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.01 seconds |
|
403
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 0.93932 seconds |
|
404
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.87 seconds |
|
405
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 2.85 seconds |
|
406
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.92 seconds |
|
407
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 2.98 seconds |
|
408
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 2.94 seconds |
|
409
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.93 seconds |
|
410
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 3.05 seconds |
|
411
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 1.17 seconds |
|
412
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 2.8 seconds |
|
413
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.32 seconds |
|
414
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.48 seconds |
|
415
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.91 seconds |
|
416
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.07 seconds |
|
417
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.22 seconds |
|
418
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.87 seconds |
|
419
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 1.71 seconds |
|
420
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.89096 seconds |
|
421
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.6 seconds |
|
422
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.8 seconds |
|
423
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 2.07 seconds |
|
424
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 1.36 seconds |
|
425
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.51 seconds |
|
426
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:2] | passed | 1.43 seconds |
|
427
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.25 seconds |
|
428
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.12 seconds |
|
429
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 0.96308 seconds |
|
430
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.99077 seconds |
|
431
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.86442 seconds |
|
432
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 1.47 seconds |
|
433
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 0.97364 seconds |
|
434
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.53188 seconds |
|
435
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 1.16 seconds |
|
436
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.42809 seconds |
|
437
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.50452 seconds |
|
438
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 1.49 seconds |
|
439
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.46502 seconds |
|
440
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.52413 seconds |
|
441
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.43 seconds |
|
442
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.8 seconds |
|
443
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.15 seconds |
|
444
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 1.21 seconds |
|
445
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 0.98215 seconds |
|
446
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 1.02 seconds |
|
447
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 1.55 seconds |
|
448
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 1.37 seconds |
|
449
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 1.11 seconds |
|
450
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 1.01 seconds |
|
451
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.84941 seconds |
|
452
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 2.35 seconds |
|
453
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.74 seconds |
|
454
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.13694 seconds |
|
455
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.11117 seconds |
|
456
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.13433 seconds |
|
457
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.35102 seconds |
|
458
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.1791 seconds |
|
459
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.28295 seconds |
|
460
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.13675 seconds |
|
461
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.12658 seconds |
|
462
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.2336 seconds |
|
463
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 1.16 seconds |
|
464
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 0.94192 seconds |
|
465
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.34831 seconds |
|
466
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.46266 seconds |
|
467
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.96336 seconds |
|
468
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.72243 seconds |
|
469
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.74 seconds |
|
470
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.72778 seconds |
|
471
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.67887 seconds |
|
472
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.26107 seconds |
|
473
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.18315 seconds |
|
474
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.11599 seconds |
|
475
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.10495 seconds |
|
476
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.71 seconds |
|
477
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.1805 seconds |
|
478
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.03282 seconds |
|
479
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01335 seconds |
|
480
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.01359 seconds |
|
481
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.01091 seconds |
|
482
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.01274 seconds |
|
483
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01147 seconds |
|
484
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.05624 seconds |
|
485
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01141 seconds |
|
486
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.01304 seconds |
|
487
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.05287 seconds |
|
488
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.05289 seconds |
|
489
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.01227 seconds |
|
490
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01202 seconds |
|
491
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01439 seconds |
|
492
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01134 seconds |
|
493
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01173 seconds |
|
494
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.01333 seconds |
|
495
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.01006 seconds |
|
496
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.01088 seconds |
|
497
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.0111 seconds |
|
498
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01131 seconds |
|
499
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.05556 seconds |
|
500
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.0589 seconds |
|
501
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.05484 seconds |
|
502
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.05317 seconds |
|
503
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.05281 seconds |
|
504
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.05381 seconds |
|
505
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.05993 seconds |
|
506
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.06578 seconds |
|
507
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.06074 seconds |
|
508
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.06124 seconds |
|
509
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.0598 seconds |
|
510
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.06059 seconds |
|
511
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.01149 seconds |
|
512
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.05815 seconds |
|
513
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01277 seconds |
|
514
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.05689 seconds |
|
515
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.01325 seconds |
|
516
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.05795 seconds |
|
517
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.18472 seconds |
|
518
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.16375 seconds |
|
519
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.17393 seconds |
|
520
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.01367 seconds |
|
521
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.0115 seconds |
|
522
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.015 seconds |
|
523
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.06884 seconds |
|
524
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.08769 seconds |
|
525
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.06672 seconds |
|
526
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01312 seconds |
|
527
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.06466 seconds |
|
528
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.01275 seconds |
|
529
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.10341 seconds |
|
530
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.07138 seconds |
|
531
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.08767 seconds |
|
532
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.05636 seconds |
|
533
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.01344 seconds |
|
534
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.0117 seconds |
|
535
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.01327 seconds |
|
536
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.07072 seconds |
|
537
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.07598 seconds |
|
538
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.07859 seconds |
|
539
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.06738 seconds |
|
540
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.06925 seconds |
|
541
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.07516 seconds |
|
542
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.07399 seconds |
|
543
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.07342 seconds |
|
544
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.06701 seconds |
|
545
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.07009 seconds |
|
546
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.06731 seconds |
|
547
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.07053 seconds |
|
548
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.06901 seconds |
|
549
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.07229 seconds |
|
550
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.012 seconds |
|
551
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.01035 seconds |
|
552
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.01247 seconds |
|
553
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.01137 seconds |
|
554
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.01246 seconds |
|
555
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.01204 seconds |
|
556
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01173 seconds |
|
557
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01208 seconds |
|
558
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.01183 seconds |
|
559
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.01302 seconds |
|
560
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.0629 seconds |
|
561
|
+
./spec/i18n_spec.rb[1:1] | pending | 1.73 seconds |
|
562
|
+
./spec/i18n_spec.rb[1:2] | passed | 2.08 seconds |
|
563
|
+
./spec/i18n_spec.rb[1:3] | passed | 0.68599 seconds |
|
564
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.0604 seconds |
|
565
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.12719 seconds |
|
566
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00908 seconds |
|
567
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.10507 seconds |
|
568
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.12676 seconds |
|
569
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.13694 seconds |
|
570
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.12118 seconds |
|
571
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.11566 seconds |
|
572
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.1225 seconds |
|
573
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.05665 seconds |
|
574
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.08846 seconds |
|
575
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.06229 seconds |
|
576
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.07982 seconds |
|
577
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.07521 seconds |
|
578
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.0757 seconds |
|
579
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.07727 seconds |
|
580
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.08649 seconds |
|
581
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.08052 seconds |
|
582
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.0256 seconds |
|
583
|
+
./spec/lib/migration/page_language_spec.rb[1:1:1] | passed | 0.06862 seconds |
|
584
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.01138 seconds |
|
585
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.01118 seconds |
|
586
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.0107 seconds |
|
587
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.01086 seconds |
|
588
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00968 seconds |
|
589
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.01043 seconds |
|
590
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.04879 seconds |
|
591
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.01109 seconds |
|
592
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01079 seconds |
|
593
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.01051 seconds |
|
594
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.05053 seconds |
|
595
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.01045 seconds |
|
596
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.00953 seconds |
|
597
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.01033 seconds |
|
598
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.0114 seconds |
|
599
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.15476 seconds |
|
600
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.01364 seconds |
|
601
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.01216 seconds |
|
602
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.01323 seconds |
|
603
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.01191 seconds |
|
604
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.0656 seconds |
|
605
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.06584 seconds |
|
606
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.06338 seconds |
|
607
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.08457 seconds |
|
608
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.06005 seconds |
|
609
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.07472 seconds |
|
610
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.05822 seconds |
|
611
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.06017 seconds |
|
612
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.06002 seconds |
|
613
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.0594 seconds |
|
614
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.05699 seconds |
|
615
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00918 seconds |
|
616
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.01019 seconds |
|
617
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.01012 seconds |
|
618
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00972 seconds |
|
619
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00913 seconds |
|
620
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00994 seconds |
|
621
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.01048 seconds |
|
622
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.05818 seconds |
|
623
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.05378 seconds |
|
624
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.0719 seconds |
|
625
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.01633 seconds |
|
626
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.01801 seconds |
|
627
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.01467 seconds |
|
628
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.01755 seconds |
|
629
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.05387 seconds |
|
630
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.10097 seconds |
|
631
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.05386 seconds |
|
632
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.06772 seconds |
|
633
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.06874 seconds |
|
634
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.08809 seconds |
|
635
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.07532 seconds |
|
636
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.06722 seconds |
|
637
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.05206 seconds |
|
638
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.05358 seconds |
|
639
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.07333 seconds |
|
640
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.05828 seconds |
|
641
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.05757 seconds |
|
642
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.01023 seconds |
|
643
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.01173 seconds |
|
644
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.01043 seconds |
|
645
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.0094 seconds |
|
646
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.01048 seconds |
|
647
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.01179 seconds |
|
648
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01047 seconds |
|
649
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.05372 seconds |
|
650
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.05338 seconds |
|
651
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.06165 seconds |
|
652
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.05569 seconds |
|
653
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.06963 seconds |
|
654
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.05686 seconds |
|
655
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.05552 seconds |
|
656
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.0725 seconds |
|
657
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.05576 seconds |
|
658
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.02364 seconds |
|
659
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.06099 seconds |
|
660
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.06828 seconds |
|
661
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.07069 seconds |
|
662
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.06785 seconds |
|
663
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.06131 seconds |
|
664
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.06183 seconds |
|
665
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.06244 seconds |
|
666
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.06462 seconds |
|
667
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.06277 seconds |
|
668
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.06564 seconds |
|
669
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.0641 seconds |
|
670
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.06119 seconds |
|
671
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.06506 seconds |
|
672
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.06713 seconds |
|
673
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.06381 seconds |
|
674
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.07709 seconds |
|
675
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.07876 seconds |
|
676
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.06195 seconds |
|
677
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.06181 seconds |
|
678
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.07046 seconds |
|
679
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.06963 seconds |
|
680
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.06189 seconds |
|
681
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.06046 seconds |
|
682
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.06386 seconds |
|
683
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.06472 seconds |
|
684
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.06398 seconds |
|
685
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.08127 seconds |
|
686
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.06136 seconds |
|
687
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.06189 seconds |
|
688
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.06754 seconds |
|
689
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.0707 seconds |
|
690
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.06656 seconds |
|
691
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.01119 seconds |
|
692
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01024 seconds |
|
693
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.05232 seconds |
|
694
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.05542 seconds |
|
695
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.05076 seconds |
|
696
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.05459 seconds |
|
697
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.057 seconds |
|
698
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.05949 seconds |
|
699
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.0586 seconds |
|
700
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.03605 seconds |
|
701
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.05324 seconds |
|
702
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.05849 seconds |
|
703
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.05235 seconds |
|
704
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.05302 seconds |
|
705
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.05306 seconds |
|
706
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.05741 seconds |
|
707
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.05574 seconds |
|
708
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.05635 seconds |
|
709
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.05296 seconds |
|
710
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.05429 seconds |
|
711
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.05758 seconds |
|
712
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:3] | passed | 0.05949 seconds |
|
713
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.05772 seconds |
|
714
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.05341 seconds |
|
715
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.0546 seconds |
|
716
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.05366 seconds |
|
717
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.05458 seconds |
|
718
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.05096 seconds |
|
719
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.0563 seconds |
|
720
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.05674 seconds |
|
721
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.05414 seconds |
|
722
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.05374 seconds |
|
723
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.05611 seconds |
|
724
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.06028 seconds |
|
725
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.07236 seconds |
|
726
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 1.69 seconds |
|
727
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.0557 seconds |
|
728
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.05474 seconds |
|
729
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.0538 seconds |
|
730
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.05188 seconds |
|
731
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.05574 seconds |
|
732
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.05494 seconds |
|
733
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.06691 seconds |
|
734
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.06381 seconds |
|
735
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.06916 seconds |
|
736
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.06597 seconds |
|
737
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.06764 seconds |
|
738
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.05972 seconds |
|
739
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.06056 seconds |
|
740
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.05944 seconds |
|
741
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.06609 seconds |
|
742
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.62521 seconds |
|
743
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.06248 seconds |
|
744
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.08012 seconds |
|
745
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.07094 seconds |
|
746
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.06391 seconds |
|
747
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.06142 seconds |
|
748
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.05964 seconds |
|
749
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.06288 seconds |
|
750
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.06598 seconds |
|
751
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.07878 seconds |
|
752
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.06736 seconds |
|
753
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.09029 seconds |
|
754
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.08559 seconds |
|
755
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.07878 seconds |
|
756
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.07284 seconds |
|
757
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.07209 seconds |
|
758
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.07329 seconds |
|
759
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.08214 seconds |
|
760
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.07851 seconds |
|
761
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.10168 seconds |
|
762
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.08899 seconds |
|
763
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.07515 seconds |
|
764
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.06705 seconds |
|
765
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.06643 seconds |
|
766
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.06086 seconds |
|
767
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.06623 seconds |
|
768
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.06788 seconds |
|
769
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.05679 seconds |
|
770
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.06594 seconds |
|
771
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.01362 seconds |
|
772
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.01178 seconds |
|
773
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.01028 seconds |
|
774
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.01951 seconds |
|
775
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.02762 seconds |
|
776
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.0157 seconds |
|
777
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.01392 seconds |
|
778
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.01518 seconds |
|
779
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.0193 seconds |
|
780
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.01297 seconds |
|
781
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.01338 seconds |
|
782
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.0115 seconds |
|
783
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.01198 seconds |
|
784
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00914 seconds |
|
785
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.05903 seconds |
|
786
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.05715 seconds |
|
787
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.05583 seconds |
|
788
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.05898 seconds |
|
789
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.01232 seconds |
|
790
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.07819 seconds |
|
791
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.05562 seconds |
|
792
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.01082 seconds |
|
793
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.06026 seconds |
|
794
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.01519 seconds |
|
795
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.01504 seconds |
|
796
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01764 seconds |
|
797
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.0157 seconds |
|
798
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.06073 seconds |
|
799
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.05852 seconds |
|
800
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.05713 seconds |
|
801
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.06387 seconds |
|
802
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.06542 seconds |
|
803
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.05931 seconds |
|
804
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.05866 seconds |
|
805
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.05861 seconds |
|
806
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.07179 seconds |
|
807
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.0576 seconds |
|
808
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.01822 seconds |
|
809
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.01887 seconds |
|
810
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.05212 seconds |
|
811
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.05244 seconds |
|
812
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:2] | passed | 0.08538 seconds |
|
813
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.02483 seconds |
|
814
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6] | passed | 0.02146 seconds |
|
815
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.07382 seconds |
|
816
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.08448 seconds |
|
817
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.08348 seconds |
|
818
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.08234 seconds |
|
819
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.02755 seconds |
|
820
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.14836 seconds |
|
821
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:2:1] | passed | 0.10558 seconds |
|
822
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:2:2] | passed | 0.09005 seconds |
|
823
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.05679 seconds |
|
824
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2] | passed | 0.05008 seconds |
|
825
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1] | passed | 0.07644 seconds |
|
826
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1:1] | passed | 0.05273 seconds |
|
827
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:2:1] | passed | 0.05663 seconds |
|
828
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:3:1] | passed | 0.05566 seconds |
|
829
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.0511 seconds |
|
830
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1] | passed | 0.05028 seconds |
|
831
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1:1] | passed | 0.05048 seconds |
|
832
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2:1] | passed | 0.05613 seconds |
|
833
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.05543 seconds |
|
834
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2] | passed | 0.05528 seconds |
|
835
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.01915 seconds |
|
836
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:2] | passed | 0.02179 seconds |
|
837
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:3:1] | passed | 0.0204 seconds |
|
838
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:4:1] | passed | 0.02033 seconds |
|
839
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1:1] | passed | 0.0657 seconds |
|
840
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:2:1] | passed | 0.02117 seconds |
|
841
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:1] | passed | 0.0887 seconds |
|
842
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21] | passed | 0.02032 seconds |
|
843
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22:1] | passed | 0.09877 seconds |
|
844
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22:2] | passed | 0.07882 seconds |
|
845
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22:3] | passed | 0.06188 seconds |
|
846
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.01113 seconds |
|
847
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.09738 seconds |
|
848
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.08578 seconds |
|
849
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.11941 seconds |
|
850
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.08894 seconds |
|
851
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.17983 seconds |
|
852
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.05908 seconds |
|
853
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.06377 seconds |
|
854
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.05622 seconds |
|
855
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.00915 seconds |
|
856
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.01039 seconds |
|
857
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.07642 seconds |
|
858
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.08091 seconds |
|
859
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.07508 seconds |
|
860
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.01084 seconds |
|
861
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.00933 seconds |
|
862
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.01193 seconds |
|
863
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.01227 seconds |
|
864
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.01592 seconds |
|
865
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.01823 seconds |
|
866
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.01464 seconds |
|
867
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01074 seconds |
|
868
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.00935 seconds |
|
869
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.05301 seconds |
|
870
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.05379 seconds |
|
871
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.05471 seconds |
|
872
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.05238 seconds |
|
873
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.01019 seconds |
|
874
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00999 seconds |
|
875
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.01164 seconds |
|
876
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.00933 seconds |
|
877
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.05674 seconds |
|
878
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.05523 seconds |
|
879
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.05758 seconds |
|
880
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.05617 seconds |
|
881
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.05479 seconds |
|
882
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.00952 seconds |
|
883
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.01003 seconds |
|
884
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.07248 seconds |
|
885
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.06103 seconds |
|
886
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.05394 seconds |
|
887
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.05782 seconds |
|
888
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.01191 seconds |
|
889
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01236 seconds |
|
890
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00984 seconds |
|
891
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.01048 seconds |
|
892
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.01023 seconds |
|
893
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:1:1] | passed | 0.06478 seconds |
|
894
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:1] | passed | 0.06536 seconds |
|
895
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:2] | passed | 0.06716 seconds |
|
896
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.05776 seconds |
|
897
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.05675 seconds |
|
898
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.05671 seconds |
|
899
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.05892 seconds |
|
900
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.05709 seconds |
|
901
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.0585 seconds |
|
902
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.05905 seconds |
|
903
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.10726 seconds |
|
904
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.10525 seconds |
|
905
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.12626 seconds |
|
906
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.1078 seconds |
|
907
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.10916 seconds |
|
908
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.10496 seconds |
|
909
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.11303 seconds |
|
910
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.1023 seconds |
|
911
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.06536 seconds |
|
912
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.07461 seconds |
|
913
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.1506 seconds |
|
914
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.07622 seconds |
|
915
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.07489 seconds |
|
916
|
+
./spec/models/spotlight/page_spec.rb[1:14:2] | passed | 0.06948 seconds |
|
917
|
+
./spec/models/spotlight/page_spec.rb[1:14:3] | passed | 0.06507 seconds |
|
918
|
+
./spec/models/spotlight/page_spec.rb[1:14:4] | passed | 0.06528 seconds |
|
919
|
+
./spec/models/spotlight/page_spec.rb[1:14:5:1] | passed | 0.08795 seconds |
|
920
|
+
./spec/models/spotlight/page_spec.rb[1:14:6:1] | passed | 0.0814 seconds |
|
921
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.07244 seconds |
|
922
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.07754 seconds |
|
923
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.08087 seconds |
|
924
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.06298 seconds |
|
925
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.05926 seconds |
|
926
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.06128 seconds |
|
927
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.05953 seconds |
|
928
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.05936 seconds |
|
929
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.87122 seconds |
|
930
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.05976 seconds |
|
931
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.05843 seconds |
|
932
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.05959 seconds |
|
933
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.06098 seconds |
|
934
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.05857 seconds |
|
935
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.00988 seconds |
|
936
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.27 seconds |
|
937
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.13 seconds |
|
938
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.05816 seconds |
|
939
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.05455 seconds |
|
940
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.06011 seconds |
|
941
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.05836 seconds |
|
942
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.06426 seconds |
|
943
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.05825 seconds |
|
944
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.06035 seconds |
|
945
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.05906 seconds |
|
946
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.13415 seconds |
|
947
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.10688 seconds |
|
948
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.10533 seconds |
|
949
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.10305 seconds |
|
950
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.11643 seconds |
|
951
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.11517 seconds |
|
952
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.11759 seconds |
|
953
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.01259 seconds |
|
954
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01304 seconds |
|
955
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.0137 seconds |
|
956
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.01058 seconds |
|
957
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.05605 seconds |
|
958
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:2:1] | passed | 0.07446 seconds |
|
959
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.42467 seconds |
|
960
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.07047 seconds |
|
961
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.07065 seconds |
|
962
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.07393 seconds |
|
963
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.07255 seconds |
|
964
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.06851 seconds |
|
965
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.07024 seconds |
|
966
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.0701 seconds |
|
967
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.07034 seconds |
|
968
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.07115 seconds |
|
969
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.07173 seconds |
|
970
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.07143 seconds |
|
971
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.06903 seconds |
|
972
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.09363 seconds |
|
973
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.07944 seconds |
|
974
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.0804 seconds |
|
975
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.07553 seconds |
|
976
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.07846 seconds |
|
977
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.06727 seconds |
|
978
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01552 seconds |
|
979
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01761 seconds |
|
980
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02068 seconds |
|
981
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.0225 seconds |
|
982
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.02395 seconds |
|
983
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.02267 seconds |
|
984
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.0196 seconds |
|
985
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.01115 seconds |
|
986
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.01204 seconds |
|
987
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.01026 seconds |
|
988
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 1.5 seconds |
|
989
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.11574 seconds |
|
990
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.12182 seconds |
|
991
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.13044 seconds |
|
992
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.12183 seconds |
|
993
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.11538 seconds |
|
994
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.10735 seconds |
|
995
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 0.10679 seconds |
|
996
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.11456 seconds |
|
997
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.11448 seconds |
|
998
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.01448 seconds |
|
999
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.01204 seconds |
|
1000
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.02377 seconds |
|
1001
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.02158 seconds |
|
1002
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.01654 seconds |
|
1003
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.01633 seconds |
|
1004
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.075 seconds |
|
1005
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.18526 seconds |
|
1006
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.06963 seconds |
|
1007
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.08057 seconds |
|
1008
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.06847 seconds |
|
1009
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.06818 seconds |
|
1010
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.09387 seconds |
|
1011
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.06607 seconds |
|
1012
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.05404 seconds |
|
1013
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.05406 seconds |
|
1014
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.00962 seconds |
|
1015
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.14092 seconds |
|
1016
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.05154 seconds |
|
1017
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.05145 seconds |
|
1018
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.05029 seconds |
|
1019
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.05575 seconds |
|
1020
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.07652 seconds |
|
1021
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.07394 seconds |
|
1022
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.05108 seconds |
|
1023
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.07234 seconds |
|
1024
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.0119 seconds |
|
1025
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.01076 seconds |
|
1026
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.00841 seconds |
|
1027
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00912 seconds |
|
1028
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00824 seconds |
|
1029
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.00895 seconds |
|
1030
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.05465 seconds |
|
1031
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.05445 seconds |
|
1032
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.05397 seconds |
|
1033
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.01006 seconds |
|
1034
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.01037 seconds |
|
1035
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.00897 seconds |
|
1036
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.05432 seconds |
|
1037
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.05923 seconds |
|
1038
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.05935 seconds |
|
1039
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.06132 seconds |
|
1040
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.05722 seconds |
|
1041
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.06096 seconds |
|
1042
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.05727 seconds |
|
1043
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.05784 seconds |
|
1044
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.05834 seconds |
|
1045
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.05767 seconds |
|
1046
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.08485 seconds |
|
1047
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.01137 seconds |
|
1048
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.01046 seconds |
|
1049
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.00937 seconds |
|
1050
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00877 seconds |
|
1051
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.01116 seconds |
|
1052
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.02088 seconds |
|
1053
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.01054 seconds |
|
1054
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00893 seconds |
|
1055
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.01011 seconds |
|
1056
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.00996 seconds |
|
1057
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.01039 seconds |
|
1058
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.01013 seconds |
|
1059
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.00923 seconds |
|
1060
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.06836 seconds |
|
1061
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.0667 seconds |
|
1062
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.06506 seconds |
|
1063
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.06657 seconds |
|
1064
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.06582 seconds |
|
1065
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.06596 seconds |
|
1066
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.067 seconds |
|
1067
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.06979 seconds |
|
1068
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.09851 seconds |
|
1069
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.06544 seconds |
|
1070
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.06734 seconds |
|
1071
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.07502 seconds |
|
1072
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.16864 seconds |
|
1073
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.1597 seconds |
|
1074
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.15464 seconds |
|
1075
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.1568 seconds |
|
1076
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.16012 seconds |
|
1077
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.16449 seconds |
|
1078
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.19987 seconds |
|
1079
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.16321 seconds |
|
1080
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.15902 seconds |
|
1081
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.16408 seconds |
|
1082
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.18283 seconds |
|
1083
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.17558 seconds |
|
1084
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.22214 seconds |
|
1085
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.19787 seconds |
|
1086
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.20072 seconds |
|
1087
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.18691 seconds |
|
1088
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.16053 seconds |
|
1089
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.22184 seconds |
|
1090
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.20143 seconds |
|
1091
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.1968 seconds |
|
1092
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.21456 seconds |
|
1093
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.17337 seconds |
|
1094
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.19346 seconds |
|
1095
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.20744 seconds |
|
1096
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.15256 seconds |
|
1097
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.15428 seconds |
|
1098
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.17088 seconds |
|
1099
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.16065 seconds |
|
1100
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.01932 seconds |
|
1101
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.07204 seconds |
|
1102
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.08838 seconds |
|
1103
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.02698 seconds |
|
1104
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.01562 seconds |
|
1105
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.01691 seconds |
|
1106
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.01672 seconds |
|
1107
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.01657 seconds |
|
1108
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.01726 seconds |
|
1109
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.09719 seconds |
|
1110
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.09819 seconds |
|
1111
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.10941 seconds |
|
1112
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.05295 seconds |
|
1113
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.13996 seconds |
|
1114
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.13974 seconds |
|
1115
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.13876 seconds |
|
1116
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.01023 seconds |
|
1117
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.00993 seconds |
|
1118
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.01006 seconds |
|
1119
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.0086 seconds |
|
1120
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.01514 seconds |
|
1121
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.01669 seconds |
|
1122
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.01476 seconds |
|
1123
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.01577 seconds |
|
1124
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.01463 seconds |
|
1125
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.18276 seconds |
|
1126
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.05638 seconds |
|
1127
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.05951 seconds |
|
1128
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.08238 seconds |
|
1129
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.06255 seconds |
|
1130
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.06374 seconds |
|
1131
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.12688 seconds |
|
1132
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.01239 seconds |
|
1133
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.18034 seconds |
|
1134
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.06523 seconds |
|
1135
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.07289 seconds |
|
1136
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.0756 seconds |
|
1137
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.08542 seconds |
|
1138
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.06441 seconds |
|
1139
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.07609 seconds |
|
1140
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.07574 seconds |
|
1141
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.07511 seconds |
|
1142
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.0625 seconds |
|
1143
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.07679 seconds |
|
1144
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.07237 seconds |
|
1145
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.06534 seconds |
|
1146
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.07257 seconds |
|
1147
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.07522 seconds |
|
1148
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.05958 seconds |
|
1149
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.05638 seconds |
|
1150
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.06656 seconds |
|
1151
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.12996 seconds |
|
1152
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.12574 seconds |
|
1153
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.16665 seconds |
|
1154
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.06471 seconds |
|
1155
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.05374 seconds |
|
1156
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.07562 seconds |
|
1157
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.07655 seconds |
|
1158
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.06367 seconds |
|
1159
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.06632 seconds |
|
1160
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.02044 seconds |
|
1161
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.0129 seconds |
|
1162
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01194 seconds |
|
1163
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.09342 seconds |
|
1164
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 4.17 seconds |
|
1165
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03535 seconds |
|
1166
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.03212 seconds |
|
1167
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.24866 seconds |
|
1168
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.10231 seconds |
|
1169
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.09804 seconds |
|
1170
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.13488 seconds |
|
1171
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.0124 seconds |
|
1172
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.1115 seconds |
|
1173
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 1.06 seconds |
|
1174
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.10728 seconds |
|
1175
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.10326 seconds |
|
1176
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.10815 seconds |
|
1177
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.10565 seconds |
|
1178
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.10685 seconds |
|
1179
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.10548 seconds |
|
1180
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.5365 seconds |
|
1181
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.06292 seconds |
|
1182
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.07078 seconds |
|
1183
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:4] | passed | 0.06987 seconds |
|
1184
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:5] | passed | 0.0743 seconds |
|
1185
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.96252 seconds |
|
1186
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.02756 seconds |
|
1187
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.02435 seconds |
|
1188
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.01835 seconds |
|
1189
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.54156 seconds |
|
1190
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.06075 seconds |
|
1191
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.05035 seconds |
|
1192
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.05116 seconds |
|
1193
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.05209 seconds |
|
1194
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.05086 seconds |
|
1195
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.12676 seconds |
|
1196
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01515 seconds |
|
1197
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.2656 seconds |
|
1198
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.2272 seconds |
|
1199
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.22397 seconds |
|
1200
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.22661 seconds |
|
1201
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.23699 seconds |
|
1202
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.23744 seconds |
|
1203
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.22535 seconds |
|
1204
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.05661 seconds |
|
1205
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.06956 seconds |
|
1206
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.06071 seconds |
|
1207
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.41171 seconds |
|
1208
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.06089 seconds |
|
1209
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.16948 seconds |
|
1210
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.05262 seconds |
|
1211
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.06303 seconds |
|
1212
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.17501 seconds |
|
1213
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 0.06033 seconds |
|
1214
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 2.26 seconds |
|
1215
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 2.51 seconds |
|
1216
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.13961 seconds |
|
1217
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.13907 seconds |
|
1218
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.14349 seconds |
|
1219
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.19171 seconds |
|
1220
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.14148 seconds |
|
1221
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.19684 seconds |
|
1222
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.20663 seconds |
|
1223
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.15441 seconds |
|
1224
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.47046 seconds |
|
1225
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02504 seconds |
|
1226
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01851 seconds |
|
1227
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01418 seconds |
|
1228
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01212 seconds |
|
1229
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.15265 seconds |
|
1230
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.14893 seconds |
|
1231
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.08565 seconds |
|
1232
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.05622 seconds |
|
1233
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.0193 seconds |
|
1234
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.16666 seconds |
|
1235
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.05404 seconds |
|
1236
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.6712 seconds |
|
1237
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.4863 seconds |
|
1238
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.02331 seconds |
|
1239
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.13757 seconds |
|
1240
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.02468 seconds |
|
1241
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.02434 seconds |
|
1242
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.02639 seconds |
|
1243
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.02367 seconds |
|
1244
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.04223 seconds |
|
1245
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02891 seconds |
|
1246
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.13614 seconds |
|
1247
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.48094 seconds |
|
1248
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.02132 seconds |
|
1249
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.01944 seconds |
|
1250
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.03457 seconds |
|
1251
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.02328 seconds |
|
1252
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.01851 seconds |
|
1253
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.37452 seconds |
|
1254
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.01688 seconds |
|
1255
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.0253 seconds |
|
1256
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.03467 seconds |
|
1257
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.04466 seconds |
|
1258
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.63493 seconds |
|
1259
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.12362 seconds |
|
1260
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.01518 seconds |
|
1261
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.01354 seconds |
|
1262
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.53225 seconds |
|
1263
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.082 seconds |
|
1264
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.07714 seconds |
|
1265
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.07847 seconds |
|
1266
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.17642 seconds |
|
1267
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.06162 seconds |
|
1268
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.05836 seconds |
|
1269
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.0615 seconds |
|
1270
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.05914 seconds |
|
1271
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.05936 seconds |
|
1272
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.06187 seconds |
|
1273
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.17585 seconds |
|
1274
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.0608 seconds |
|
1275
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.06072 seconds |
|
1276
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.19078 seconds |
|
1277
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.44867 seconds |
|
1278
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.08866 seconds |
|
1279
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.03207 seconds |
|
1280
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.02572 seconds |
|
1281
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.18142 seconds |
|
1282
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.12729 seconds |
|
1283
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01329 seconds |
|
1284
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.18792 seconds |
|
1285
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.1329 seconds |
|
1286
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.13394 seconds |
|
1287
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.14275 seconds |
|
1288
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.15526 seconds |
|
1289
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.14299 seconds |
|
1290
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.02146 seconds |
|
1291
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.13514 seconds |
|
1292
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.66916 seconds |
|
1293
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.10015 seconds |
|
1294
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.08959 seconds |
|
1295
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.07518 seconds |
|
1296
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.06991 seconds |
|
1297
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.07083 seconds |
|
1298
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.07669 seconds |
|
1299
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.06852 seconds |
|
1300
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.06472 seconds |
|
1301
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.06457 seconds |
|