blacklight-spotlight 3.0.0.alpha.8 → 3.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
- data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
- data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
- data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
- data/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +55 -1
- data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
- data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +7 -2
- data/app/assets/javascripts/spotlight/admin/crop.es6 +11 -0
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +21 -12
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +11 -3
- data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
- data/app/assets/javascripts/spotlight/user/index.js +1 -0
- data/app/assets/stylesheets/spotlight/_accessibility.scss +1 -1
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +16 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +6 -6
- data/app/assets/stylesheets/spotlight/_curation.scss +6 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +214 -83
- data/app/assets/stylesheets/spotlight/_header.scss +1 -1
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +10 -5
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
- data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +7 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +69 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +1 -2
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -12
- data/app/controllers/spotlight/browse_controller.rb +7 -3
- data/app/controllers/spotlight/catalog_controller.rb +1 -1
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/exhibits_controller.rb +2 -3
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/pages_controller.rb +6 -9
- data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
- data/app/controllers/spotlight/searches_controller.rb +7 -19
- data/app/controllers/spotlight/translations_controller.rb +46 -0
- data/app/helpers/spotlight/application_helper.rb +1 -1
- data/app/helpers/spotlight/crop_helper.rb +4 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/main_app_helpers.rb +1 -1
- data/app/jobs/spotlight/add_uploads_from_csv.rb +30 -5
- data/app/mailers/spotlight/indexing_complete_mailer.rb +3 -2
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- data/app/models/concerns/spotlight/translatables.rb +17 -1
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/spotlight/ability.rb +2 -0
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +2 -1
- data/app/models/spotlight/contact.rb +1 -1
- data/app/models/spotlight/custom_field.rb +3 -3
- data/app/models/spotlight/exhibit.rb +18 -4
- data/app/models/spotlight/feature_page.rb +3 -1
- data/app/models/spotlight/featured_image.rb +29 -12
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +3 -1
- data/app/models/spotlight/main_navigation.rb +2 -2
- data/app/models/spotlight/masthead.rb +1 -1
- data/app/models/spotlight/page.rb +5 -1
- data/app/models/spotlight/page_configurations.rb +6 -0
- data/app/models/spotlight/page_content.rb +2 -0
- data/app/models/spotlight/resources/csv_upload.rb +2 -1
- data/app/models/spotlight/resources/iiif_manifest.rb +8 -6
- data/app/models/spotlight/resources/upload.rb +1 -1
- data/app/models/spotlight/search.rb +10 -1
- data/app/models/spotlight/solr_document_sidecar.rb +7 -5
- data/app/models/spotlight/temporary_image.rb +8 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +482 -0
- data/app/services/spotlight/solr_document_builder.rb +1 -0
- data/app/values/custom_field_name.rb +1 -0
- data/app/views/catalog/_save_search.html.erb +1 -1
- data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +5 -3
- data/app/views/spotlight/browse/_search_title.html.erb +2 -1
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/contacts/_form.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
- data/app/views/spotlight/pages/_form.html.erb +2 -2
- data/app/views/spotlight/searches/_form.html.erb +13 -0
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_honeypot_field.html.erb +4 -0
- data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
- data/app/views/spotlight/sir_trevor/blocks/_browse_block.html.erb +1 -0
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +44 -0
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +7 -1
- data/app/views/spotlight/translations/_browse_categories.html.erb +29 -3
- data/app/views/spotlight/translations/_general.html.erb +7 -7
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/_import.html.erb +24 -0
- data/app/views/spotlight/translations/_metadata.html.erb +1 -1
- data/app/views/spotlight/translations/_page.html.erb +5 -5
- data/app/views/spotlight/translations/_pages.html.erb +4 -4
- data/app/views/spotlight/translations/_pages_table.html.erb +5 -5
- data/app/views/spotlight/translations/_search_fields.html.erb +3 -3
- data/app/views/spotlight/translations/edit.html.erb +14 -6
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +81 -0
- data/config/i18n-tasks.yml +7 -0
- data/config/locales/spotlight.ar.yml +47 -24
- data/config/locales/spotlight.en.yml +182 -127
- data/config/routes.rb +16 -1
- data/db/migrate/20200403161512_add_subtitle_to_searches.rb +7 -0
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/lib/generators/spotlight/install_generator.rb +23 -2
- data/lib/generators/spotlight/templates/config/initializers/sir_trevor_rails.rb +10 -0
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
- data/lib/spotlight/engine.rb +27 -3
- data/lib/spotlight/upload_field_config.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
- data/spec/controllers/spotlight/catalog_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/translations_controller_spec.rb +53 -2
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1437 -1389
- data/spec/factories/featured_images.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/searches.rb +11 -1
- data/spec/features/add_contacts_spec.rb +1 -1
- data/spec/features/browse_category_admin_spec.rb +39 -7
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/catalog_spec.rb +2 -2
- data/spec/features/create_exhibit_spec.rb +5 -4
- data/spec/features/dashboard_spec.rb +7 -7
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/administration_spec.rb +3 -3
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
- data/spec/features/exhibits/translation_editing_spec.rb +57 -8
- data/spec/features/home_page_spec.rb +13 -4
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +3 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +4 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +6 -5
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +2 -2
- data/spec/i18n_spec.rb +0 -2
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +13 -1
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/solr_document_spec.rb +2 -3
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
- data/spec/models/spotlight/exhibit_spec.rb +18 -2
- data/spec/models/spotlight/featured_image_spec.rb +27 -0
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- data/spec/models/spotlight/page_spec.rb +6 -1
- data/spec/models/spotlight/resources/upload_spec.rb +43 -79
- data/spec/models/spotlight/role_spec.rb +3 -3
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/{serializers/spotlight/exhibit_export_serializer_spec.rb → services/spotlight/exhibit_import_export_service_spec.rb} +168 -23
- data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -1
- data/spec/services/spotlight/solr_document_builder_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +1 -3
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -3
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/translations/_import.html.erb_spec.rb +24 -0
- data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +399 -284
- data/app/serializers/spotlight/exhibit_export_serializer.rb +0 -205
- data/app/serializers/spotlight/featured_image_representer.rb +0 -29
- data/app/serializers/spotlight/main_navigation_representer.rb +0 -13
- data/app/serializers/spotlight/page_representer.rb +0 -33
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
@@ -22,7 +22,7 @@ describe Spotlight::HomePagesController, type: :controller, versioning: true do
|
|
22
22
|
it 'shows breadcrumbs' do
|
23
23
|
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
24
24
|
expect(controller).to receive(:add_breadcrumb).with('Feature pages', exhibit_feature_pages_path(exhibit))
|
25
|
-
expect(controller).to receive(:add_breadcrumb).with('Exhibit
|
25
|
+
expect(controller).to receive(:add_breadcrumb).with('Exhibit home', [:edit, exhibit, page])
|
26
26
|
get :edit, params: { id: page, exhibit_id: page.exhibit }
|
27
27
|
expect(response).to be_successful
|
28
28
|
end
|
@@ -41,7 +41,7 @@ describe Spotlight::HomePagesController, type: :controller, versioning: true do
|
|
41
41
|
it 'redirects to the feature page index action' do
|
42
42
|
put :update, params: { id: page, exhibit_id: page.exhibit.id, home_page: valid_attributes }
|
43
43
|
page.reload
|
44
|
-
expect(response).to redirect_to(exhibit_home_page_path(page.exhibit
|
44
|
+
expect(response).to redirect_to(exhibit_home_page_path(page.exhibit))
|
45
45
|
expect(flash[:notice]).to have_link 'Undo changes'
|
46
46
|
end
|
47
47
|
end
|
@@ -50,19 +50,19 @@ describe Spotlight::Resources::CsvUploadController, type: :controller do
|
|
50
50
|
request.env['HTTP_REFERER'] = 'http://test.host/'
|
51
51
|
end
|
52
52
|
|
53
|
-
it 'starts an
|
54
|
-
expect(Spotlight::
|
53
|
+
it 'starts an AddUploadsFromCsv job with the serialized CSV' do
|
54
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).with(serialized_csv, exhibit, user).and_return(nil)
|
55
55
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
56
56
|
end
|
57
57
|
|
58
58
|
it 'sets the flash message' do
|
59
|
-
expect(Spotlight::
|
59
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).and_return(nil)
|
60
60
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
61
61
|
expect(flash[:notice]).to eq "'csv-upload-fixture.csv' has been uploaded. An email will be sent to you once indexing is complete."
|
62
62
|
end
|
63
63
|
|
64
64
|
it 'redirects back' do
|
65
|
-
expect(Spotlight::
|
65
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).and_return(nil)
|
66
66
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
67
67
|
expect(response).to redirect_to "http://test.host/spotlight/#{exhibit.slug}/catalog/admin"
|
68
68
|
end
|
@@ -47,8 +47,8 @@ describe Spotlight::Resources::UploadController, type: :controller do
|
|
47
47
|
|
48
48
|
it 'can add multivalued fields' do
|
49
49
|
field = FactoryBot.create(:custom_field, exhibit: exhibit, is_multiple: true)
|
50
|
-
post :create, params: { exhibit_id: exhibit, resources_upload: { data: { field.
|
51
|
-
expect(assigns[:resource].sidecar.data).to include(field.
|
50
|
+
post :create, params: { exhibit_id: exhibit, resources_upload: { data: { field.slug => %w[1 2 3] } } }
|
51
|
+
expect(assigns[:resource].sidecar.data).to include(field.slug => %w[1 2 3])
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
@@ -41,13 +41,14 @@ describe Spotlight::SearchesController, type: :controller do
|
|
41
41
|
request.env['HTTP_REFERER'] = '/referring_url'
|
42
42
|
post :create, params: { 'search' => { 'title' => 'A bunch of maps' }, 'f' => { 'genre_ssim' => ['map'] }, exhibit_id: exhibit }
|
43
43
|
expect(response).to redirect_to '/referring_url'
|
44
|
-
expect(flash[:notice]).to eq 'The
|
44
|
+
expect(flash[:notice]).to eq 'The browse category was created.'
|
45
45
|
expect(assigns[:search].title).to eq 'A bunch of maps'
|
46
46
|
expect(assigns[:search].query_params).to eq('f' => { 'genre_ssim' => ['map'] })
|
47
47
|
end
|
48
48
|
|
49
49
|
describe 'GET index' do
|
50
50
|
let!(:search) { FactoryBot.create(:search, exhibit: exhibit) }
|
51
|
+
let(:group) { FactoryBot.create(:group, published: true, title: 'Good group', exhibit: exhibit, searches: [search]) }
|
51
52
|
|
52
53
|
it 'shows all the items' do
|
53
54
|
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
@@ -59,6 +60,12 @@ describe Spotlight::SearchesController, type: :controller do
|
|
59
60
|
expect(assigns[:searches]).to include search
|
60
61
|
end
|
61
62
|
|
63
|
+
it 'assigns groups and group' do
|
64
|
+
get :index, params: { exhibit_id: search.exhibit_id }
|
65
|
+
expect(response).to be_successful
|
66
|
+
expect(assigns[:groups]).to eq [group]
|
67
|
+
end
|
68
|
+
|
62
69
|
it 'has a JSON response with published resources' do
|
63
70
|
search.published = true
|
64
71
|
search.save!
|
@@ -155,7 +162,7 @@ describe Spotlight::SearchesController, type: :controller do
|
|
155
162
|
delete :destroy, params: { id: search, exhibit_id: search.exhibit }
|
156
163
|
end.to change { Spotlight::Search.count }.by(-1)
|
157
164
|
expect(response).to redirect_to exhibit_searches_path(search.exhibit)
|
158
|
-
expect(flash[:alert]).to eq 'The
|
165
|
+
expect(flash[:alert]).to eq 'The browse category was deleted.'
|
159
166
|
end
|
160
167
|
end
|
161
168
|
|
@@ -181,7 +188,7 @@ describe Spotlight::SearchesController, type: :controller do
|
|
181
188
|
expect(search2.reload.published).to be_falsey
|
182
189
|
expect(search3.reload.published).to be_truthy # should remain untouched since it wasn't present
|
183
190
|
expect(response).to redirect_to 'http://example.com'
|
184
|
-
expect(flash[:notice]).to eq '
|
191
|
+
expect(flash[:notice]).to eq 'Browse categories were successfully updated.'
|
185
192
|
end
|
186
193
|
end
|
187
194
|
end
|
@@ -2,10 +2,9 @@
|
|
2
2
|
|
3
3
|
describe Spotlight::TranslationsController do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
5
6
|
|
6
7
|
describe '#edit' do
|
7
|
-
let(:exhibit) { FactoryBot.create(:exhibit) }
|
8
|
-
|
9
8
|
context 'when not signed in' do
|
10
9
|
it 'is not successful' do
|
11
10
|
get :edit, params: { exhibit_id: exhibit }
|
@@ -78,4 +77,56 @@ describe Spotlight::TranslationsController do
|
|
78
77
|
end
|
79
78
|
end
|
80
79
|
end
|
80
|
+
|
81
|
+
describe '#show' do
|
82
|
+
render_views
|
83
|
+
before do
|
84
|
+
sign_in user
|
85
|
+
FactoryBot.create(:translation, exhibit: exhibit, locale: 'es', key: "#{exhibit.slug}.title", value: 'Titulo')
|
86
|
+
end
|
87
|
+
|
88
|
+
let(:user) { FactoryBot.create(:site_admin) }
|
89
|
+
|
90
|
+
it 'provides a YML dump of the default language translations' do
|
91
|
+
get :show, params: { exhibit_id: exhibit, format: 'yaml' }
|
92
|
+
expect(response).to be_successful
|
93
|
+
translations = YAML.safe_load(response.body).with_indifferent_access
|
94
|
+
|
95
|
+
expect(translations).to include :en
|
96
|
+
expect(translations[:en]).to include :blacklight, :spotlight, exhibit.slug
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'provides a YML dump of the requested language translations' do
|
100
|
+
get :show, params: { exhibit_id: exhibit, format: 'yaml', locale: 'es' }
|
101
|
+
expect(response).to be_successful
|
102
|
+
translations = YAML.safe_load(response.body).with_indifferent_access
|
103
|
+
|
104
|
+
expect(translations).to include :es
|
105
|
+
expect(translations[:es]).to include :blacklight, :spotlight, exhibit.slug
|
106
|
+
expect(translations[:es][exhibit.slug]).to include title: 'Titulo', subtitle: nil
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
describe '#import' do
|
111
|
+
before { sign_in user }
|
112
|
+
|
113
|
+
let(:user) { FactoryBot.create(:site_admin) }
|
114
|
+
|
115
|
+
it 'is successful' do
|
116
|
+
f = Tempfile.new('foo')
|
117
|
+
begin
|
118
|
+
f.write({ en: { exhibit.slug => { title: 'Imported title' } } }.deep_stringify_keys.to_yaml)
|
119
|
+
f.rewind
|
120
|
+
file = Rack::Test::UploadedFile.new(f.path, 'text/plain')
|
121
|
+
patch :import, params: { exhibit_id: exhibit, file: file }
|
122
|
+
ensure
|
123
|
+
f.close
|
124
|
+
f.unlink
|
125
|
+
end
|
126
|
+
expect(response).to be_redirect
|
127
|
+
assigns[:exhibit].tap do |saved|
|
128
|
+
expect(saved.title).to eq 'Imported title'
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
81
132
|
end
|
@@ -28,7 +28,7 @@ describe Spotlight::ViewConfigurationsController, type: :controller do
|
|
28
28
|
get :show, params: { exhibit_id: exhibit, format: 'json' }
|
29
29
|
expect(response).to be_successful
|
30
30
|
available = JSON.parse(response.body)
|
31
|
-
expect(available).to match_array %w[list gallery slideshow]
|
31
|
+
expect(available).to match_array %w[list gallery masonry slideshow]
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
data/spec/examples.txt
CHANGED
@@ -1,1389 +1,1437 @@
|
|
1
|
-
example_id | status | run_time
|
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/admin_users_controller_spec.rb[1:2:3:1] | passed | 0.
|
26
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.
|
27
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.
|
28
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.
|
29
|
-
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.
|
30
|
-
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.
|
31
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.
|
32
|
-
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.
|
33
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.
|
34
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.
|
35
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.
|
36
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.
|
37
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.
|
38
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.
|
39
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
40
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:
|
41
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:
|
42
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:
|
43
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:
|
44
|
-
./spec/controllers/spotlight/
|
45
|
-
./spec/controllers/spotlight/
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
58
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
63
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
74
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:
|
75
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
76
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
77
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
78
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:
|
79
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
80
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
81
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:
|
82
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:
|
83
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
84
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
85
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:
|
86
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:
|
87
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:
|
88
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
89
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
90
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:
|
91
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
92
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
93
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:
|
94
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
95
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
96
|
-
./spec/controllers/spotlight/
|
97
|
-
./spec/controllers/spotlight/
|
98
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:
|
99
|
-
./spec/controllers/spotlight/
|
100
|
-
./spec/controllers/spotlight/
|
101
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:
|
102
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:
|
103
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:
|
104
|
-
./spec/controllers/spotlight/
|
105
|
-
./spec/controllers/spotlight/
|
106
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:
|
107
|
-
./spec/controllers/spotlight/
|
108
|
-
./spec/controllers/spotlight/
|
109
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:
|
110
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
111
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:
|
112
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
113
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
114
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
115
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:
|
116
|
-
./spec/controllers/spotlight/
|
117
|
-
./spec/controllers/spotlight/
|
118
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:
|
119
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:
|
120
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:
|
121
|
-
./spec/controllers/spotlight/
|
122
|
-
./spec/controllers/spotlight/
|
123
|
-
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:
|
124
|
-
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:
|
125
|
-
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:
|
126
|
-
./spec/controllers/spotlight/
|
127
|
-
./spec/controllers/spotlight/
|
128
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:
|
129
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:
|
130
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:
|
131
|
-
./spec/controllers/spotlight/
|
132
|
-
./spec/controllers/spotlight/
|
133
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
134
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
135
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
136
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
137
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
138
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:
|
139
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
140
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
141
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
142
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:
|
143
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
144
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
145
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
146
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:
|
147
|
-
./spec/controllers/spotlight/
|
148
|
-
./spec/controllers/spotlight/
|
149
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
150
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
151
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:
|
152
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:
|
153
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1]
|
154
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
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:5:
|
159
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:
|
160
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
161
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
162
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
163
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:
|
164
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:
|
165
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
166
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
167
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
168
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:
|
169
|
-
./spec/controllers/spotlight/
|
170
|
-
./spec/controllers/spotlight/
|
171
|
-
./spec/controllers/spotlight/
|
172
|
-
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:
|
173
|
-
./spec/controllers/spotlight/
|
174
|
-
./spec/controllers/spotlight/
|
175
|
-
./spec/controllers/spotlight/
|
176
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:
|
177
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:
|
178
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:
|
179
|
-
./spec/controllers/spotlight/
|
180
|
-
./spec/controllers/spotlight/
|
181
|
-
./spec/controllers/spotlight/
|
182
|
-
./spec/controllers/spotlight/
|
183
|
-
./spec/controllers/spotlight/
|
184
|
-
./spec/controllers/spotlight/
|
185
|
-
./spec/controllers/spotlight/
|
186
|
-
./spec/controllers/spotlight/
|
187
|
-
./spec/controllers/spotlight/
|
188
|
-
./spec/controllers/spotlight/
|
189
|
-
./spec/controllers/spotlight/
|
190
|
-
./spec/controllers/spotlight/
|
191
|
-
./spec/controllers/spotlight/
|
192
|
-
./spec/controllers/spotlight/
|
193
|
-
./spec/controllers/spotlight/
|
194
|
-
./spec/controllers/spotlight/
|
195
|
-
./spec/controllers/spotlight/
|
196
|
-
./spec/controllers/spotlight/
|
197
|
-
./spec/controllers/spotlight/
|
198
|
-
./spec/controllers/spotlight/
|
199
|
-
./spec/controllers/spotlight/
|
200
|
-
./spec/controllers/spotlight/
|
201
|
-
./spec/controllers/spotlight/
|
202
|
-
./spec/controllers/spotlight/
|
203
|
-
./spec/controllers/spotlight/
|
204
|
-
./spec/controllers/spotlight/
|
205
|
-
./spec/controllers/spotlight/
|
206
|
-
./spec/controllers/spotlight/
|
207
|
-
./spec/controllers/spotlight/
|
208
|
-
./spec/controllers/spotlight/
|
209
|
-
./spec/controllers/spotlight/
|
210
|
-
./spec/controllers/spotlight/
|
211
|
-
./spec/controllers/spotlight/
|
212
|
-
./spec/controllers/spotlight/
|
213
|
-
./spec/controllers/spotlight/
|
214
|
-
./spec/controllers/spotlight/
|
215
|
-
./spec/controllers/spotlight/
|
216
|
-
./spec/controllers/spotlight/
|
217
|
-
./spec/controllers/spotlight/
|
218
|
-
./spec/controllers/spotlight/
|
219
|
-
./spec/controllers/spotlight/
|
220
|
-
./spec/controllers/spotlight/
|
221
|
-
./spec/controllers/spotlight/
|
222
|
-
./spec/controllers/spotlight/
|
223
|
-
./spec/controllers/spotlight/
|
224
|
-
./spec/controllers/spotlight/
|
225
|
-
./spec/controllers/spotlight/
|
226
|
-
./spec/controllers/spotlight/
|
227
|
-
./spec/controllers/spotlight/
|
228
|
-
./spec/controllers/spotlight/
|
229
|
-
./spec/controllers/spotlight/
|
230
|
-
./spec/controllers/spotlight/
|
231
|
-
./spec/controllers/spotlight/
|
232
|
-
./spec/controllers/spotlight/
|
233
|
-
./spec/controllers/spotlight/
|
234
|
-
./spec/controllers/spotlight/
|
235
|
-
./spec/controllers/spotlight/
|
236
|
-
./spec/controllers/spotlight/
|
237
|
-
./spec/controllers/spotlight/
|
238
|
-
./spec/controllers/spotlight/
|
239
|
-
./spec/controllers/spotlight/
|
240
|
-
./spec/controllers/spotlight/
|
241
|
-
./spec/controllers/spotlight/
|
242
|
-
./spec/controllers/spotlight/
|
243
|
-
./spec/controllers/spotlight/
|
244
|
-
./spec/controllers/spotlight/
|
245
|
-
./spec/controllers/spotlight/
|
246
|
-
./spec/controllers/spotlight/
|
247
|
-
./spec/controllers/spotlight/
|
248
|
-
./spec/controllers/spotlight/
|
249
|
-
./spec/controllers/spotlight/
|
250
|
-
./spec/controllers/spotlight/
|
251
|
-
./spec/controllers/spotlight/
|
252
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:
|
253
|
-
./spec/controllers/spotlight/
|
254
|
-
./spec/controllers/spotlight/
|
255
|
-
./spec/controllers/spotlight/
|
256
|
-
./spec/controllers/spotlight/
|
257
|
-
./spec/controllers/spotlight/
|
258
|
-
./spec/controllers/spotlight/
|
259
|
-
./spec/controllers/spotlight/
|
260
|
-
./spec/controllers/spotlight/
|
261
|
-
./spec/controllers/spotlight/
|
262
|
-
./spec/controllers/spotlight/
|
263
|
-
./spec/controllers/spotlight/
|
264
|
-
./spec/controllers/spotlight/
|
265
|
-
./spec/controllers/spotlight/
|
266
|
-
./spec/controllers/spotlight/
|
267
|
-
./spec/controllers/spotlight/
|
268
|
-
./spec/controllers/spotlight/
|
269
|
-
./spec/controllers/spotlight/
|
270
|
-
./spec/controllers/spotlight/
|
271
|
-
./spec/controllers/spotlight/
|
272
|
-
./spec/controllers/spotlight/
|
273
|
-
./spec/controllers/spotlight/
|
274
|
-
./spec/controllers/spotlight/
|
275
|
-
./spec/controllers/spotlight/
|
276
|
-
./spec/controllers/spotlight/
|
277
|
-
./spec/controllers/spotlight/
|
278
|
-
./spec/controllers/spotlight/
|
279
|
-
./spec/controllers/spotlight/
|
280
|
-
./spec/
|
281
|
-
./spec/
|
282
|
-
./spec/
|
283
|
-
./spec/
|
284
|
-
./spec/
|
285
|
-
./spec/
|
286
|
-
./spec/
|
287
|
-
./spec/
|
288
|
-
./spec/
|
289
|
-
./spec/
|
290
|
-
./spec/
|
291
|
-
./spec/
|
292
|
-
./spec/
|
293
|
-
./spec/
|
294
|
-
./spec/
|
295
|
-
./spec/features/
|
296
|
-
./spec/features/
|
297
|
-
./spec/features/
|
298
|
-
./spec/features/
|
299
|
-
./spec/features/
|
300
|
-
./spec/features/
|
301
|
-
./spec/features/
|
302
|
-
./spec/features/
|
303
|
-
./spec/features/
|
304
|
-
./spec/features/
|
305
|
-
./spec/features/
|
306
|
-
./spec/features/
|
307
|
-
./spec/features/
|
308
|
-
./spec/features/
|
309
|
-
./spec/features/
|
310
|
-
./spec/features/
|
311
|
-
./spec/features/
|
312
|
-
./spec/features/
|
313
|
-
./spec/features/
|
314
|
-
./spec/features/
|
315
|
-
./spec/features/
|
316
|
-
./spec/features/
|
317
|
-
./spec/features/
|
318
|
-
./spec/features/
|
319
|
-
./spec/features/
|
320
|
-
./spec/features/
|
321
|
-
./spec/features/
|
322
|
-
./spec/features/
|
323
|
-
./spec/features/
|
324
|
-
./spec/features/
|
325
|
-
./spec/features/
|
326
|
-
./spec/features/
|
327
|
-
./spec/features/
|
328
|
-
./spec/features/
|
329
|
-
./spec/features/
|
330
|
-
./spec/features/
|
331
|
-
./spec/features/
|
332
|
-
./spec/features/
|
333
|
-
./spec/features/
|
334
|
-
./spec/features/
|
335
|
-
./spec/features/
|
336
|
-
./spec/features/
|
337
|
-
./spec/features/
|
338
|
-
./spec/features/
|
339
|
-
./spec/features/
|
340
|
-
./spec/features/
|
341
|
-
./spec/features/
|
342
|
-
./spec/features/
|
343
|
-
./spec/features/
|
344
|
-
./spec/features/
|
345
|
-
./spec/features/
|
346
|
-
./spec/features/
|
347
|
-
./spec/features/
|
348
|
-
./spec/features/
|
349
|
-
./spec/features/
|
350
|
-
./spec/features/
|
351
|
-
./spec/features/
|
352
|
-
./spec/features/
|
353
|
-
./spec/features/
|
354
|
-
./spec/features/
|
355
|
-
./spec/features/
|
356
|
-
./spec/features/
|
357
|
-
./spec/features/
|
358
|
-
./spec/features/
|
359
|
-
./spec/features/
|
360
|
-
./spec/features/
|
361
|
-
./spec/features/
|
362
|
-
./spec/features/
|
363
|
-
./spec/features/
|
364
|
-
./spec/features/
|
365
|
-
./spec/features/
|
366
|
-
./spec/features/
|
367
|
-
./spec/features/
|
368
|
-
./spec/features/exhibits/
|
369
|
-
./spec/features/exhibits/
|
370
|
-
./spec/features/exhibits/
|
371
|
-
./spec/features/exhibits/
|
372
|
-
./spec/features/exhibits/
|
373
|
-
./spec/features/exhibits/
|
374
|
-
./spec/features/exhibits/
|
375
|
-
./spec/features/exhibits/
|
376
|
-
./spec/features/exhibits/
|
377
|
-
./spec/features/exhibits/
|
378
|
-
./spec/features/exhibits/
|
379
|
-
./spec/features/exhibits/
|
380
|
-
./spec/features/exhibits/
|
381
|
-
./spec/features/exhibits/
|
382
|
-
./spec/features/exhibits/
|
383
|
-
./spec/features/exhibits/
|
384
|
-
./spec/features/exhibits/
|
385
|
-
./spec/features/exhibits/
|
386
|
-
./spec/features/exhibits/
|
387
|
-
./spec/features/exhibits/
|
388
|
-
./spec/features/exhibits/
|
389
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
390
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
391
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:3:
|
392
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
393
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
394
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:4:
|
395
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
396
|
-
./spec/features/exhibits/translation_editing_spec.rb[1:
|
397
|
-
./spec/features/
|
398
|
-
./spec/features/
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/
|
401
|
-
./spec/features/
|
402
|
-
./spec/features/
|
403
|
-
./spec/features/
|
404
|
-
./spec/features/
|
405
|
-
./spec/features/
|
406
|
-
./spec/features/
|
407
|
-
./spec/features/
|
408
|
-
./spec/features/
|
409
|
-
./spec/features/
|
410
|
-
./spec/features/
|
411
|
-
./spec/features/
|
412
|
-
./spec/features/
|
413
|
-
./spec/features/
|
414
|
-
./spec/features/
|
415
|
-
./spec/features/
|
416
|
-
./spec/features/
|
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/features/
|
443
|
-
./spec/features/
|
444
|
-
./spec/features/
|
445
|
-
./spec/features/javascript/
|
446
|
-
./spec/features/javascript/
|
447
|
-
./spec/features/javascript/
|
448
|
-
./spec/features/javascript/
|
449
|
-
./spec/features/javascript/
|
450
|
-
./spec/features/javascript/
|
451
|
-
./spec/features/javascript/
|
452
|
-
./spec/features/javascript/
|
453
|
-
./spec/features/javascript/
|
454
|
-
./spec/features/javascript/
|
455
|
-
./spec/features/javascript/
|
456
|
-
./spec/features/javascript/
|
457
|
-
./spec/features/javascript/
|
458
|
-
./spec/features/javascript/
|
459
|
-
./spec/features/javascript/
|
460
|
-
./spec/features/javascript/
|
461
|
-
./spec/features/javascript/
|
462
|
-
./spec/features/javascript/
|
463
|
-
./spec/features/javascript/
|
464
|
-
./spec/features/javascript/
|
465
|
-
./spec/features/javascript/
|
466
|
-
./spec/features/javascript/
|
467
|
-
./spec/features/javascript/
|
468
|
-
./spec/features/javascript/
|
469
|
-
./spec/features/javascript/
|
470
|
-
./spec/features/javascript/
|
471
|
-
./spec/features/javascript/
|
472
|
-
./spec/features/javascript/
|
473
|
-
./spec/features/
|
474
|
-
./spec/features/
|
475
|
-
./spec/features/
|
476
|
-
./spec/features/
|
477
|
-
./spec/features/
|
478
|
-
./spec/features/
|
479
|
-
./spec/features/
|
480
|
-
./spec/features/
|
481
|
-
./spec/features/
|
482
|
-
./spec/features/
|
483
|
-
./spec/features/
|
484
|
-
./spec/features/
|
485
|
-
./spec/features/
|
486
|
-
./spec/features/
|
487
|
-
./spec/features/
|
488
|
-
./spec/features/
|
489
|
-
./spec/features/
|
490
|
-
./spec/features/
|
491
|
-
./spec/features/
|
492
|
-
./spec/features/
|
493
|
-
./spec/features/
|
494
|
-
./spec/features/
|
495
|
-
./spec/features/
|
496
|
-
./spec/features/
|
497
|
-
./spec/features/
|
498
|
-
./spec/features/
|
499
|
-
./spec/
|
500
|
-
./spec/
|
501
|
-
./spec/
|
502
|
-
./spec/
|
503
|
-
./spec/
|
504
|
-
./spec/
|
505
|
-
./spec/
|
506
|
-
./spec/
|
507
|
-
./spec/
|
508
|
-
./spec/
|
509
|
-
./spec/
|
510
|
-
./spec/
|
511
|
-
./spec/
|
512
|
-
./spec/
|
513
|
-
./spec/
|
514
|
-
./spec/
|
515
|
-
./spec/
|
516
|
-
./spec/
|
517
|
-
./spec/
|
518
|
-
./spec/
|
519
|
-
./spec/
|
520
|
-
./spec/
|
521
|
-
./spec/
|
522
|
-
./spec/
|
523
|
-
./spec/
|
524
|
-
./spec/
|
525
|
-
./spec/
|
526
|
-
./spec/
|
527
|
-
./spec/
|
528
|
-
./spec/helpers/spotlight/
|
529
|
-
./spec/helpers/spotlight/
|
530
|
-
./spec/helpers/spotlight/
|
531
|
-
./spec/helpers/spotlight/
|
532
|
-
./spec/helpers/spotlight/
|
533
|
-
./spec/helpers/spotlight/
|
534
|
-
./spec/helpers/spotlight/
|
535
|
-
./spec/helpers/spotlight/
|
536
|
-
./spec/helpers/spotlight/
|
537
|
-
./spec/helpers/spotlight/
|
538
|
-
./spec/helpers/spotlight/
|
539
|
-
./spec/helpers/spotlight/
|
540
|
-
./spec/helpers/spotlight/
|
541
|
-
./spec/helpers/spotlight/
|
542
|
-
./spec/helpers/spotlight/
|
543
|
-
./spec/helpers/spotlight/
|
544
|
-
./spec/helpers/spotlight/
|
545
|
-
./spec/helpers/spotlight/
|
546
|
-
./spec/helpers/spotlight/
|
547
|
-
./spec/helpers/spotlight/
|
548
|
-
./spec/helpers/spotlight/
|
549
|
-
./spec/helpers/spotlight/
|
550
|
-
./spec/helpers/spotlight/
|
551
|
-
./spec/helpers/spotlight/
|
552
|
-
./spec/helpers/spotlight/
|
553
|
-
./spec/helpers/spotlight/
|
554
|
-
./spec/helpers/spotlight/
|
555
|
-
./spec/helpers/spotlight/
|
556
|
-
./spec/helpers/spotlight/
|
557
|
-
./spec/helpers/spotlight/
|
558
|
-
./spec/helpers/spotlight/
|
559
|
-
./spec/helpers/spotlight/
|
560
|
-
./spec/helpers/spotlight/
|
561
|
-
./spec/helpers/spotlight/
|
562
|
-
./spec/helpers/spotlight/
|
563
|
-
./spec/helpers/spotlight/
|
564
|
-
./spec/helpers/spotlight/
|
565
|
-
./spec/helpers/spotlight/
|
566
|
-
./spec/helpers/spotlight/
|
567
|
-
./spec/helpers/spotlight/
|
568
|
-
./spec/helpers/spotlight/
|
569
|
-
./spec/helpers/spotlight/
|
570
|
-
./spec/helpers/spotlight/
|
571
|
-
./spec/helpers/spotlight/
|
572
|
-
./spec/helpers/spotlight/
|
573
|
-
./spec/helpers/spotlight/
|
574
|
-
./spec/helpers/spotlight/
|
575
|
-
./spec/helpers/spotlight/
|
576
|
-
./spec/helpers/spotlight/
|
577
|
-
./spec/helpers/spotlight/
|
578
|
-
./spec/helpers/spotlight/
|
579
|
-
./spec/helpers/spotlight/
|
580
|
-
./spec/helpers/spotlight/
|
581
|
-
./spec/helpers/spotlight/
|
582
|
-
./spec/helpers/spotlight/
|
583
|
-
./spec/helpers/spotlight/
|
584
|
-
./spec/helpers/spotlight/
|
585
|
-
./spec/helpers/spotlight/
|
586
|
-
./spec/helpers/spotlight/
|
587
|
-
./spec/helpers/spotlight/
|
588
|
-
./spec/helpers/spotlight/
|
589
|
-
./spec/helpers/spotlight/
|
590
|
-
./spec/helpers/spotlight/
|
591
|
-
./spec/helpers/spotlight/
|
592
|
-
./spec/helpers/spotlight/
|
593
|
-
./spec/helpers/spotlight/
|
594
|
-
./spec/
|
595
|
-
./spec/
|
596
|
-
./spec/
|
597
|
-
./spec/
|
598
|
-
./spec/
|
599
|
-
./spec/
|
600
|
-
./spec/
|
601
|
-
./spec/
|
602
|
-
./spec/
|
603
|
-
./spec/
|
604
|
-
./spec/
|
605
|
-
./spec/
|
606
|
-
./spec/
|
607
|
-
./spec/
|
608
|
-
./spec/
|
609
|
-
./spec/
|
610
|
-
./spec/
|
611
|
-
./spec/
|
612
|
-
./spec/
|
613
|
-
./spec/
|
614
|
-
./spec/
|
615
|
-
./spec/
|
616
|
-
./spec/
|
617
|
-
./spec/
|
618
|
-
./spec/
|
619
|
-
./spec/
|
620
|
-
./spec/
|
621
|
-
./spec/
|
622
|
-
./spec/
|
623
|
-
./spec/
|
624
|
-
./spec/
|
625
|
-
./spec/
|
626
|
-
./spec/
|
627
|
-
./spec/
|
628
|
-
./spec/
|
629
|
-
./spec/
|
630
|
-
./spec/
|
631
|
-
./spec/
|
632
|
-
./spec/
|
633
|
-
./spec/
|
634
|
-
./spec/
|
635
|
-
./spec/
|
636
|
-
./spec/
|
637
|
-
./spec/lib/
|
638
|
-
./spec/
|
639
|
-
./spec/
|
640
|
-
./spec/
|
641
|
-
./spec/
|
642
|
-
./spec/
|
643
|
-
./spec/
|
644
|
-
./spec/
|
645
|
-
./spec/
|
646
|
-
./spec/
|
647
|
-
./spec/
|
648
|
-
./spec/
|
649
|
-
./spec/
|
650
|
-
./spec/
|
651
|
-
./spec/
|
652
|
-
./spec/
|
653
|
-
./spec/
|
654
|
-
./spec/
|
655
|
-
./spec/
|
656
|
-
./spec/
|
657
|
-
./spec/
|
658
|
-
./spec/
|
659
|
-
./spec/
|
660
|
-
./spec/
|
661
|
-
./spec/
|
662
|
-
./spec/
|
663
|
-
./spec/
|
664
|
-
./spec/
|
665
|
-
./spec/
|
666
|
-
./spec/
|
667
|
-
./spec/
|
668
|
-
./spec/
|
669
|
-
./spec/models/
|
670
|
-
./spec/models/
|
671
|
-
./spec/models/
|
672
|
-
./spec/models/
|
673
|
-
./spec/models/
|
674
|
-
./spec/models/
|
675
|
-
./spec/models/
|
676
|
-
./spec/models/
|
677
|
-
./spec/models/
|
678
|
-
./spec/models/
|
679
|
-
./spec/models/
|
680
|
-
./spec/models/
|
681
|
-
./spec/models/
|
682
|
-
./spec/models/
|
683
|
-
./spec/models/
|
684
|
-
./spec/models/
|
685
|
-
./spec/models/
|
686
|
-
./spec/models/
|
687
|
-
./spec/models/
|
688
|
-
./spec/models/
|
689
|
-
./spec/models/
|
690
|
-
./spec/models/
|
691
|
-
./spec/models/
|
692
|
-
./spec/models/
|
693
|
-
./spec/models/
|
694
|
-
./spec/models/
|
695
|
-
./spec/models/solr_document_spec.rb[1:
|
696
|
-
./spec/models/
|
697
|
-
./spec/models/
|
698
|
-
./spec/models/
|
699
|
-
./spec/models/
|
700
|
-
./spec/models/
|
701
|
-
./spec/models/
|
702
|
-
./spec/models/
|
703
|
-
./spec/models/
|
704
|
-
./spec/models/
|
705
|
-
./spec/models/
|
706
|
-
./spec/models/
|
707
|
-
./spec/models/
|
708
|
-
./spec/models/
|
709
|
-
./spec/models/
|
710
|
-
./spec/models/
|
711
|
-
./spec/models/
|
712
|
-
./spec/models/
|
713
|
-
./spec/models/
|
714
|
-
./spec/models/
|
715
|
-
./spec/models/
|
716
|
-
./spec/models/
|
717
|
-
./spec/models/
|
718
|
-
./spec/models/
|
719
|
-
./spec/models/
|
720
|
-
./spec/models/
|
721
|
-
./spec/models/
|
722
|
-
./spec/models/
|
723
|
-
./spec/models/
|
724
|
-
./spec/models/
|
725
|
-
./spec/models/
|
726
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
727
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
728
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
729
|
-
./spec/models/spotlight/ability_spec.rb[1:4
|
730
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
731
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
732
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
733
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
734
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
735
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
736
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
737
|
-
./spec/models/spotlight/ability_spec.rb[1:
|
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/blacklight_configuration_spec.rb[1:
|
780
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
781
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
782
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
783
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
784
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
785
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
786
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
787
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
788
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
789
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:
|
790
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
791
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:
|
792
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
793
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
794
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
795
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
796
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
797
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
798
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
799
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
800
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
801
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10
|
802
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
803
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
804
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:
|
805
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
806
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
807
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
808
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
809
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
810
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
811
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
812
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
813
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
814
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
815
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
816
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
817
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
818
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
819
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
820
|
-
./spec/models/spotlight/blacklight_configuration_spec.rb[1:
|
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/exhibit_spec.rb[1:
|
899
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
900
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
901
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
902
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
903
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
904
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
905
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
906
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
907
|
-
./spec/models/spotlight/exhibit_spec.rb[1:
|
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/models/spotlight/
|
980
|
-
./spec/models/spotlight/
|
981
|
-
./spec/models/spotlight/
|
982
|
-
./spec/models/spotlight/
|
983
|
-
./spec/models/spotlight/
|
984
|
-
./spec/models/spotlight/
|
985
|
-
./spec/models/spotlight/
|
986
|
-
./spec/models/spotlight/
|
987
|
-
./spec/models/spotlight/
|
988
|
-
./spec/models/spotlight/
|
989
|
-
./spec/models/spotlight/page_spec.rb[1:
|
990
|
-
./spec/models/spotlight/page_spec.rb[1:
|
991
|
-
./spec/models/spotlight/
|
992
|
-
./spec/models/spotlight/
|
993
|
-
./spec/models/spotlight/
|
994
|
-
./spec/models/spotlight/
|
995
|
-
./spec/models/spotlight/
|
996
|
-
./spec/models/spotlight/
|
997
|
-
./spec/models/spotlight/
|
998
|
-
./spec/models/spotlight/
|
999
|
-
./spec/models/spotlight/
|
1000
|
-
./spec/models/spotlight/
|
1001
|
-
./spec/models/spotlight/
|
1002
|
-
./spec/models/spotlight/
|
1003
|
-
./spec/models/spotlight/
|
1004
|
-
./spec/models/spotlight/
|
1005
|
-
./spec/models/spotlight/
|
1006
|
-
./spec/models/spotlight/
|
1007
|
-
./spec/models/spotlight/
|
1008
|
-
./spec/models/spotlight/
|
1009
|
-
./spec/models/spotlight/
|
1010
|
-
./spec/models/spotlight/
|
1011
|
-
./spec/models/spotlight/
|
1012
|
-
./spec/models/spotlight/
|
1013
|
-
./spec/models/spotlight/
|
1014
|
-
./spec/models/spotlight/
|
1015
|
-
./spec/models/spotlight/
|
1016
|
-
./spec/models/spotlight/
|
1017
|
-
./spec/models/spotlight/
|
1018
|
-
./spec/models/spotlight/
|
1019
|
-
./spec/models/spotlight/
|
1020
|
-
./spec/models/spotlight/
|
1021
|
-
./spec/models/spotlight/
|
1022
|
-
./spec/models/spotlight/
|
1023
|
-
./spec/models/spotlight/
|
1024
|
-
./spec/models/spotlight/
|
1025
|
-
./spec/models/spotlight/
|
1026
|
-
./spec/models/spotlight/
|
1027
|
-
./spec/models/spotlight/
|
1028
|
-
./spec/models/spotlight/
|
1029
|
-
./spec/models/spotlight/
|
1030
|
-
./spec/models/spotlight/
|
1031
|
-
./spec/models/spotlight/
|
1032
|
-
./spec/models/spotlight/
|
1033
|
-
./spec/models/spotlight/
|
1034
|
-
./spec/models/spotlight/
|
1035
|
-
./spec/models/spotlight/
|
1036
|
-
./spec/models/spotlight/
|
1037
|
-
./spec/models/spotlight/
|
1038
|
-
./spec/models/spotlight/
|
1039
|
-
./spec/models/spotlight/
|
1040
|
-
./spec/models/spotlight/
|
1041
|
-
./spec/models/spotlight/
|
1042
|
-
./spec/models/spotlight/
|
1043
|
-
./spec/models/spotlight/resources/
|
1044
|
-
./spec/models/spotlight/resources/
|
1045
|
-
./spec/models/spotlight/resources/
|
1046
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:
|
1047
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:
|
1048
|
-
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:
|
1049
|
-
./spec/models/spotlight/resources/
|
1050
|
-
./spec/models/spotlight/resources/
|
1051
|
-
./spec/models/spotlight/resources/
|
1052
|
-
./spec/models/spotlight/resources/
|
1053
|
-
./spec/models/spotlight/resources/
|
1054
|
-
./spec/models/spotlight/resources/
|
1055
|
-
./spec/models/spotlight/resources/
|
1056
|
-
./spec/models/spotlight/resources/
|
1057
|
-
./spec/models/spotlight/resources/
|
1058
|
-
./spec/models/spotlight/resources/
|
1059
|
-
./spec/models/spotlight/resources/
|
1060
|
-
./spec/models/spotlight/resources/
|
1061
|
-
./spec/models/spotlight/resources/
|
1062
|
-
./spec/models/spotlight/resources/
|
1063
|
-
./spec/models/spotlight/resources/
|
1064
|
-
./spec/models/spotlight/resources/
|
1065
|
-
./spec/models/spotlight/resources/
|
1066
|
-
./spec/models/spotlight/resources/
|
1067
|
-
./spec/models/spotlight/resources/
|
1068
|
-
./spec/models/spotlight/resources/
|
1069
|
-
./spec/models/spotlight/resources/
|
1070
|
-
./spec/models/spotlight/resources/
|
1071
|
-
./spec/models/spotlight/
|
1072
|
-
./spec/models/spotlight/
|
1073
|
-
./spec/models/spotlight/
|
1074
|
-
./spec/models/spotlight/
|
1075
|
-
./spec/models/spotlight/
|
1076
|
-
./spec/models/spotlight/
|
1077
|
-
./spec/models/spotlight/
|
1078
|
-
./spec/models/spotlight/
|
1079
|
-
./spec/models/spotlight/
|
1080
|
-
./spec/models/spotlight/
|
1081
|
-
./spec/models/spotlight/
|
1082
|
-
./spec/models/spotlight/
|
1083
|
-
./spec/models/spotlight/
|
1084
|
-
./spec/models/spotlight/
|
1085
|
-
./spec/models/spotlight/
|
1086
|
-
./spec/models/spotlight/
|
1087
|
-
./spec/models/spotlight/
|
1088
|
-
./spec/models/spotlight/
|
1089
|
-
./spec/models/spotlight/
|
1090
|
-
./spec/models/spotlight/
|
1091
|
-
./spec/models/spotlight/
|
1092
|
-
./spec/models/spotlight/
|
1093
|
-
./spec/models/spotlight/
|
1094
|
-
./spec/models/spotlight/
|
1095
|
-
./spec/models/spotlight/
|
1096
|
-
./spec/models/spotlight/
|
1097
|
-
./spec/models/spotlight/
|
1098
|
-
./spec/models/spotlight/
|
1099
|
-
./spec/models/spotlight/
|
1100
|
-
./spec/models/spotlight/
|
1101
|
-
./spec/models/spotlight/
|
1102
|
-
./spec/models/spotlight/
|
1103
|
-
./spec/models/spotlight/
|
1104
|
-
./spec/models/spotlight/
|
1105
|
-
./spec/models/spotlight/
|
1106
|
-
./spec/models/spotlight/
|
1107
|
-
./spec/models/spotlight/
|
1108
|
-
./spec/models/spotlight/
|
1109
|
-
./spec/models/spotlight/
|
1110
|
-
./spec/models/spotlight/
|
1111
|
-
./spec/models/
|
1112
|
-
./spec/
|
1113
|
-
./spec/
|
1114
|
-
./spec/
|
1115
|
-
./spec/
|
1116
|
-
./spec/
|
1117
|
-
./spec/
|
1118
|
-
./spec/
|
1119
|
-
./spec/
|
1120
|
-
./spec/
|
1121
|
-
./spec/
|
1122
|
-
./spec/
|
1123
|
-
./spec/
|
1124
|
-
./spec/
|
1125
|
-
./spec/
|
1126
|
-
./spec/
|
1127
|
-
./spec/
|
1128
|
-
./spec/
|
1129
|
-
./spec/
|
1130
|
-
./spec/
|
1131
|
-
./spec/
|
1132
|
-
./spec/
|
1133
|
-
./spec/
|
1134
|
-
./spec/
|
1135
|
-
./spec/
|
1136
|
-
./spec/routing/spotlight/
|
1137
|
-
./spec/
|
1138
|
-
./spec/
|
1139
|
-
./spec/
|
1140
|
-
./spec/
|
1141
|
-
./spec/
|
1142
|
-
./spec/
|
1143
|
-
./spec/
|
1144
|
-
./spec/
|
1145
|
-
./spec/
|
1146
|
-
./spec/
|
1147
|
-
./spec/
|
1148
|
-
./spec/
|
1149
|
-
./spec/
|
1150
|
-
./spec/
|
1151
|
-
./spec/
|
1152
|
-
./spec/
|
1153
|
-
./spec/
|
1154
|
-
./spec/
|
1155
|
-
./spec/
|
1156
|
-
./spec/
|
1157
|
-
./spec/
|
1158
|
-
./spec/
|
1159
|
-
./spec/
|
1160
|
-
./spec/
|
1161
|
-
./spec/
|
1162
|
-
./spec/
|
1163
|
-
./spec/
|
1164
|
-
./spec/
|
1165
|
-
./spec/
|
1166
|
-
./spec/
|
1167
|
-
./spec/
|
1168
|
-
./spec/
|
1169
|
-
./spec/
|
1170
|
-
./spec/
|
1171
|
-
./spec/
|
1172
|
-
./spec/
|
1173
|
-
./spec/
|
1174
|
-
./spec/
|
1175
|
-
./spec/
|
1176
|
-
./spec/
|
1177
|
-
./spec/
|
1178
|
-
./spec/
|
1179
|
-
./spec/
|
1180
|
-
./spec/
|
1181
|
-
./spec/
|
1182
|
-
./spec/
|
1183
|
-
./spec/services/spotlight/
|
1184
|
-
./spec/services/spotlight/
|
1185
|
-
./spec/services/spotlight/
|
1186
|
-
./spec/services/spotlight/
|
1187
|
-
./spec/services/spotlight/
|
1188
|
-
./spec/services/spotlight/
|
1189
|
-
./spec/services/spotlight/
|
1190
|
-
./spec/services/spotlight/
|
1191
|
-
./spec/services/spotlight/
|
1192
|
-
./spec/services/spotlight/
|
1193
|
-
./spec/services/spotlight/
|
1194
|
-
./spec/services/spotlight/
|
1195
|
-
./spec/services/spotlight/
|
1196
|
-
./spec/services/spotlight/
|
1197
|
-
./spec/services/spotlight/
|
1198
|
-
./spec/services/spotlight/
|
1199
|
-
./spec/services/spotlight/
|
1200
|
-
./spec/
|
1201
|
-
./spec/
|
1202
|
-
./spec/
|
1203
|
-
./spec/
|
1204
|
-
./spec/
|
1205
|
-
./spec/
|
1206
|
-
./spec/
|
1207
|
-
./spec/
|
1208
|
-
./spec/
|
1209
|
-
./spec/
|
1210
|
-
./spec/
|
1211
|
-
./spec/
|
1212
|
-
./spec/
|
1213
|
-
./spec/
|
1214
|
-
./spec/
|
1215
|
-
./spec/
|
1216
|
-
./spec/
|
1217
|
-
./spec/
|
1218
|
-
./spec/
|
1219
|
-
./spec/
|
1220
|
-
./spec/
|
1221
|
-
./spec/
|
1222
|
-
./spec/
|
1223
|
-
./spec/
|
1224
|
-
./spec/
|
1225
|
-
./spec/
|
1226
|
-
./spec/
|
1227
|
-
./spec/
|
1228
|
-
./spec/
|
1229
|
-
./spec/
|
1230
|
-
./spec/
|
1231
|
-
./spec/
|
1232
|
-
./spec/
|
1233
|
-
./spec/
|
1234
|
-
./spec/
|
1235
|
-
./spec/
|
1236
|
-
./spec/
|
1237
|
-
./spec/
|
1238
|
-
./spec/
|
1239
|
-
./spec/
|
1240
|
-
./spec/
|
1241
|
-
./spec/
|
1242
|
-
./spec/
|
1243
|
-
./spec/
|
1244
|
-
./spec/
|
1245
|
-
./spec/
|
1246
|
-
./spec/
|
1247
|
-
./spec/
|
1248
|
-
./spec/
|
1249
|
-
./spec/
|
1250
|
-
./spec/
|
1251
|
-
./spec/
|
1252
|
-
./spec/
|
1253
|
-
./spec/
|
1254
|
-
./spec/
|
1255
|
-
./spec/
|
1256
|
-
./spec/views/
|
1257
|
-
./spec/views/
|
1258
|
-
./spec/views/
|
1259
|
-
./spec/views/
|
1260
|
-
./spec/views/
|
1261
|
-
./spec/views/
|
1262
|
-
./spec/views/
|
1263
|
-
./spec/views/
|
1264
|
-
./spec/views/
|
1265
|
-
./spec/views/
|
1266
|
-
./spec/views/
|
1267
|
-
./spec/views/
|
1268
|
-
./spec/views/
|
1269
|
-
./spec/views/
|
1270
|
-
./spec/views/
|
1271
|
-
./spec/views/
|
1272
|
-
./spec/views/
|
1273
|
-
./spec/views/
|
1274
|
-
./spec/views/
|
1275
|
-
./spec/views/
|
1276
|
-
./spec/views/
|
1277
|
-
./spec/views/
|
1278
|
-
./spec/views/
|
1279
|
-
./spec/views/
|
1280
|
-
./spec/views/
|
1281
|
-
./spec/views/
|
1282
|
-
./spec/views/
|
1283
|
-
./spec/views/
|
1284
|
-
./spec/views/
|
1285
|
-
./spec/views/
|
1286
|
-
./spec/views/
|
1287
|
-
./spec/views/
|
1288
|
-
./spec/views/
|
1289
|
-
./spec/views/
|
1290
|
-
./spec/views/
|
1291
|
-
./spec/views/
|
1292
|
-
./spec/views/spotlight/
|
1293
|
-
./spec/views/spotlight/
|
1294
|
-
./spec/views/spotlight/
|
1295
|
-
./spec/views/spotlight/
|
1296
|
-
./spec/views/spotlight/
|
1297
|
-
./spec/views/spotlight/
|
1298
|
-
./spec/views/spotlight/
|
1299
|
-
./spec/views/spotlight/
|
1300
|
-
./spec/views/spotlight/
|
1301
|
-
./spec/views/spotlight/
|
1302
|
-
./spec/views/spotlight/
|
1303
|
-
./spec/views/spotlight/
|
1304
|
-
./spec/views/spotlight/
|
1305
|
-
./spec/views/spotlight/
|
1306
|
-
./spec/views/spotlight/
|
1307
|
-
./spec/views/spotlight/
|
1308
|
-
./spec/views/spotlight/
|
1309
|
-
./spec/views/spotlight/
|
1310
|
-
./spec/views/spotlight/
|
1311
|
-
./spec/views/spotlight/
|
1312
|
-
./spec/views/spotlight/
|
1313
|
-
./spec/views/spotlight/
|
1314
|
-
./spec/views/spotlight/
|
1315
|
-
./spec/views/spotlight/
|
1316
|
-
./spec/views/spotlight/
|
1317
|
-
./spec/views/spotlight/
|
1318
|
-
./spec/views/spotlight/
|
1319
|
-
./spec/views/spotlight/
|
1320
|
-
./spec/views/spotlight/
|
1321
|
-
./spec/views/spotlight/
|
1322
|
-
./spec/views/spotlight/
|
1323
|
-
./spec/views/spotlight/
|
1324
|
-
./spec/views/spotlight/
|
1325
|
-
./spec/views/spotlight/
|
1326
|
-
./spec/views/spotlight/
|
1327
|
-
./spec/views/spotlight/
|
1328
|
-
./spec/views/spotlight/
|
1329
|
-
./spec/views/spotlight/
|
1330
|
-
./spec/views/spotlight/
|
1331
|
-
./spec/views/spotlight/
|
1332
|
-
./spec/views/spotlight/
|
1333
|
-
./spec/views/spotlight/
|
1334
|
-
./spec/views/spotlight/
|
1335
|
-
./spec/views/spotlight/
|
1336
|
-
./spec/views/spotlight/
|
1337
|
-
./spec/views/spotlight/
|
1338
|
-
./spec/views/spotlight/
|
1339
|
-
./spec/views/spotlight/
|
1340
|
-
./spec/views/spotlight/
|
1341
|
-
./spec/views/spotlight/
|
1342
|
-
./spec/views/spotlight/
|
1343
|
-
./spec/views/spotlight/
|
1344
|
-
./spec/views/spotlight/
|
1345
|
-
./spec/views/spotlight/
|
1346
|
-
./spec/views/spotlight/
|
1347
|
-
./spec/views/spotlight/
|
1348
|
-
./spec/views/spotlight/
|
1349
|
-
./spec/views/spotlight/
|
1350
|
-
./spec/views/spotlight/
|
1351
|
-
./spec/views/spotlight/
|
1352
|
-
./spec/views/spotlight/
|
1353
|
-
./spec/views/spotlight/
|
1354
|
-
./spec/views/spotlight/
|
1355
|
-
./spec/views/spotlight/
|
1356
|
-
./spec/views/spotlight/
|
1357
|
-
./spec/views/spotlight/
|
1358
|
-
./spec/views/spotlight/
|
1359
|
-
./spec/views/spotlight/
|
1360
|
-
./spec/views/spotlight/
|
1361
|
-
./spec/views/spotlight/
|
1362
|
-
./spec/views/spotlight/
|
1363
|
-
./spec/views/spotlight/
|
1364
|
-
./spec/views/spotlight/
|
1365
|
-
./spec/views/spotlight/
|
1366
|
-
./spec/views/spotlight/
|
1367
|
-
./spec/views/spotlight/
|
1368
|
-
./spec/views/spotlight/
|
1369
|
-
./spec/views/spotlight/
|
1370
|
-
./spec/views/spotlight/
|
1371
|
-
./spec/views/spotlight/
|
1372
|
-
./spec/views/spotlight/
|
1373
|
-
./spec/views/spotlight/
|
1374
|
-
./spec/views/spotlight/
|
1375
|
-
./spec/views/spotlight/
|
1376
|
-
./spec/views/spotlight/
|
1377
|
-
./spec/views/spotlight/
|
1378
|
-
./spec/views/spotlight/
|
1379
|
-
./spec/views/spotlight/
|
1380
|
-
./spec/views/spotlight/
|
1381
|
-
./spec/views/spotlight/
|
1382
|
-
./spec/views/spotlight/
|
1383
|
-
./spec/views/spotlight/
|
1384
|
-
./spec/views/spotlight/
|
1385
|
-
./spec/views/spotlight/
|
1386
|
-
./spec/views/spotlight/
|
1387
|
-
./spec/views/spotlight/
|
1388
|
-
./spec/views/spotlight/
|
1389
|
-
./spec/views/spotlight/
|
1
|
+
example_id | status | run_time |
|
2
|
+
----------------------------------------------------------------------------------------------- | ------- | --------------------- |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.08107 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.25922 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.04037 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.1355 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.0707 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.09495 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.08145 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.09109 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.0934 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.07464 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.0866 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.0754 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.08816 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.07958 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.0885 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.11388 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.11599 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.0753 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.08441 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.07283 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.02066 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.02073 seconds |
|
25
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:3:1] | passed | 0.02245 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.0996 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.04468 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.06011 seconds |
|
29
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.10978 seconds |
|
30
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.04319 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.0416 seconds |
|
32
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.06118 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.06858 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.06903 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.09844 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.07455 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.05739 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.08675 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:2] | passed | 0.12466 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.07303 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.08618 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.08278 seconds |
|
43
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.07518 seconds |
|
44
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.06587 seconds |
|
45
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:5] | passed | 0.09042 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.00911 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.00577 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.01467 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.04413 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.06328 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.122 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.08626 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.0955 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.15278 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.13574 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.07657 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.09423 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.0681 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | failed | 10 minutes 46 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.08082 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.4811 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.0656 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.04884 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.05264 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.06988 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.04974 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.04812 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.09714 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.08364 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.07657 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.1476 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.13102 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.14256 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:4] | passed | 0.13094 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.07178 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.1117 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.08071 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.06237 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.04579 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07648 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.08385 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.09261 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.11051 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.0866 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.00758 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.00668 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.05892 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.05353 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.04706 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.00599 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.00623 seconds |
|
92
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.00614 seconds |
|
93
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.05103 seconds |
|
94
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.04002 seconds |
|
95
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.04352 seconds |
|
96
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:1] | passed | 0.06185 seconds |
|
97
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:2] | passed | 0.06886 seconds |
|
98
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.03354 seconds |
|
99
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.09961 seconds |
|
100
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.34463 seconds |
|
101
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.11503 seconds |
|
102
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.08122 seconds |
|
103
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.09387 seconds |
|
104
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.07699 seconds |
|
105
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.1142 seconds |
|
106
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.16105 seconds |
|
107
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.06697 seconds |
|
108
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.06701 seconds |
|
109
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.04363 seconds |
|
110
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.06171 seconds |
|
111
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.06282 seconds |
|
112
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.0766 seconds |
|
113
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.07041 seconds |
|
114
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.06776 seconds |
|
115
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.06438 seconds |
|
116
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.06407 seconds |
|
117
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.07019 seconds |
|
118
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.06415 seconds |
|
119
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.06492 seconds |
|
120
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.06044 seconds |
|
121
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.06504 seconds |
|
122
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.06186 seconds |
|
123
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:1:1] | passed | 0.07635 seconds |
|
124
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:2:1] | passed | 0.06036 seconds |
|
125
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.0529 seconds |
|
126
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.05289 seconds |
|
127
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.06407 seconds |
|
128
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.07026 seconds |
|
129
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.05421 seconds |
|
130
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.05792 seconds |
|
131
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.04684 seconds |
|
132
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.04175 seconds |
|
133
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.10378 seconds |
|
134
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1:1] | passed | 0.01571 seconds |
|
135
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:2:1] | passed | 0.04919 seconds |
|
136
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.0434 seconds |
|
137
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.04136 seconds |
|
138
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.04848 seconds |
|
139
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.03952 seconds |
|
140
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.04204 seconds |
|
141
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.02028 seconds |
|
142
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.07405 seconds |
|
143
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.0606 seconds |
|
144
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.06334 seconds |
|
145
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.06169 seconds |
|
146
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.06829 seconds |
|
147
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.05827 seconds |
|
148
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.09218 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.11248 seconds |
|
150
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.09581 seconds |
|
151
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.07416 seconds |
|
152
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.07797 seconds |
|
153
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.07144 seconds |
|
154
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.0644 seconds |
|
155
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:4:1] | passed | 0.09769 seconds |
|
156
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.0841 seconds |
|
157
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.09842 seconds |
|
158
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.09901 seconds |
|
159
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.07515 seconds |
|
160
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.07097 seconds |
|
161
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.07117 seconds |
|
162
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.07138 seconds |
|
163
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.07176 seconds |
|
164
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.08203 seconds |
|
165
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.0771 seconds |
|
166
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.06663 seconds |
|
167
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.06258 seconds |
|
168
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.14185 seconds |
|
169
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.07446 seconds |
|
170
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.07345 seconds |
|
171
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.07767 seconds |
|
172
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.07776 seconds |
|
173
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.02034 seconds |
|
174
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.01991 seconds |
|
175
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.01713 seconds |
|
176
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.10774 seconds |
|
177
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.059 seconds |
|
178
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.05107 seconds |
|
179
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.03829 seconds |
|
180
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.04328 seconds |
|
181
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.05405 seconds |
|
182
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:1:1] | passed | 0.05617 seconds |
|
183
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:2:1] | passed | 0.05698 seconds |
|
184
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:3:1] | passed | 0.06438 seconds |
|
185
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:1:1] | passed | 0.0528 seconds |
|
186
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:2:1] | passed | 0.0599 seconds |
|
187
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:3:1] | passed | 0.05835 seconds |
|
188
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:4:1] | passed | 0.06555 seconds |
|
189
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:5:1] | passed | 0.05312 seconds |
|
190
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.07643 seconds |
|
191
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.06999 seconds |
|
192
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.07927 seconds |
|
193
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.08128 seconds |
|
194
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.0812 seconds |
|
195
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.06419 seconds |
|
196
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.10307 seconds |
|
197
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.06029 seconds |
|
198
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.09242 seconds |
|
199
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.08165 seconds |
|
200
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.07627 seconds |
|
201
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.04664 seconds |
|
202
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.0704 seconds |
|
203
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.05422 seconds |
|
204
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.05119 seconds |
|
205
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.03884 seconds |
|
206
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.05115 seconds |
|
207
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.05012 seconds |
|
208
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.04752 seconds |
|
209
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.04558 seconds |
|
210
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.04112 seconds |
|
211
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.05212 seconds |
|
212
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.05664 seconds |
|
213
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.06539 seconds |
|
214
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.08642 seconds |
|
215
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.06349 seconds |
|
216
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.03995 seconds |
|
217
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.04988 seconds |
|
218
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.04989 seconds |
|
219
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.04686 seconds |
|
220
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.04286 seconds |
|
221
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.06658 seconds |
|
222
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.06618 seconds |
|
223
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.0883 seconds |
|
224
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:4] | passed | 0.08098 seconds |
|
225
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.04932 seconds |
|
226
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.03666 seconds |
|
227
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.03259 seconds |
|
228
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.04059 seconds |
|
229
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.05957 seconds |
|
230
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.06006 seconds |
|
231
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.05002 seconds |
|
232
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.05298 seconds |
|
233
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.04811 seconds |
|
234
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.05022 seconds |
|
235
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.04761 seconds |
|
236
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.06768 seconds |
|
237
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.1614 seconds |
|
238
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.05416 seconds |
|
239
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.04717 seconds |
|
240
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.04378 seconds |
|
241
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.04971 seconds |
|
242
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.04618 seconds |
|
243
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.0536 seconds |
|
244
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.04055 seconds |
|
245
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.03826 seconds |
|
246
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.05396 seconds |
|
247
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.05586 seconds |
|
248
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.05802 seconds |
|
249
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.07021 seconds |
|
250
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.0598 seconds |
|
251
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.05426 seconds |
|
252
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.04811 seconds |
|
253
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.04486 seconds |
|
254
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.05294 seconds |
|
255
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.07135 seconds |
|
256
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.06694 seconds |
|
257
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:3] | passed | 0.13769 seconds |
|
258
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.16224 seconds |
|
259
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.11016 seconds |
|
260
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.06197 seconds |
|
261
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.06726 seconds |
|
262
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.0615 seconds |
|
263
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.06082 seconds |
|
264
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.0735 seconds |
|
265
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.06368 seconds |
|
266
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.02143 seconds |
|
267
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.02021 seconds |
|
268
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.10526 seconds |
|
269
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.05016 seconds |
|
270
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.09095 seconds |
|
271
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.08983 seconds |
|
272
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.0434 seconds |
|
273
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.07217 seconds |
|
274
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.07777 seconds |
|
275
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5] | passed | 0.07871 seconds |
|
276
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:6:1] | passed | 0.08394 seconds |
|
277
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.0524 seconds |
|
278
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.0628 seconds |
|
279
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.06024 seconds |
|
280
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.07218 seconds |
|
281
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.03631 seconds |
|
282
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.04506 seconds |
|
283
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:2] | passed | 0.04814 seconds |
|
284
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.03725 seconds |
|
285
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.11335 seconds |
|
286
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.10694 seconds |
|
287
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:1] | passed | 0.08619 seconds |
|
288
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:2] | passed | 0.10075 seconds |
|
289
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:4:1] | passed | 0.0919 seconds |
|
290
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.05791 seconds |
|
291
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.05745 seconds |
|
292
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.09606 seconds |
|
293
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.08414 seconds |
|
294
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.04378 seconds |
|
295
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 8.24 seconds |
|
296
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.50855 seconds |
|
297
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.42252 seconds |
|
298
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.0414 seconds |
|
299
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 1.82 seconds |
|
300
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.265 seconds |
|
301
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3:1] | passed | 3.38 seconds |
|
302
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:4] | passed | 0.74368 seconds |
|
303
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.71156 seconds |
|
304
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.59705 seconds |
|
305
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.3701 seconds |
|
306
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.11244 seconds |
|
307
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.48224 seconds |
|
308
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.40774 seconds |
|
309
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.09866 seconds |
|
310
|
+
./spec/features/add_items_spec.rb[1:1:5] | passed | 0.10278 seconds |
|
311
|
+
./spec/features/add_items_spec.rb[1:1:6:1] | passed | 0.1402 seconds |
|
312
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 1.42 seconds |
|
313
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 1.56 seconds |
|
314
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 3.61 seconds |
|
315
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.29 seconds |
|
316
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.72608 seconds |
|
317
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.19323 seconds |
|
318
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 0.78509 seconds |
|
319
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.75316 seconds |
|
320
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.2206 seconds |
|
321
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2:1] | passed | 0.33052 seconds |
|
322
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3:1] | passed | 0.11535 seconds |
|
323
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.34464 seconds |
|
324
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.35737 seconds |
|
325
|
+
./spec/features/browse_category_admin_spec.rb[1:3:6] | passed | 0.23524 seconds |
|
326
|
+
./spec/features/browse_category_admin_spec.rb[1:3:7] | passed | 0.23174 seconds |
|
327
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.05665 seconds |
|
328
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:1] | passed | 0.14998 seconds |
|
329
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:2] | passed | 0.21733 seconds |
|
330
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:3] | passed | 0.73312 seconds |
|
331
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.12097 seconds |
|
332
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.11035 seconds |
|
333
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.10874 seconds |
|
334
|
+
./spec/features/browse_category_spec.rb[1:1:1:4:1] | passed | 0.12703 seconds |
|
335
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.11721 seconds |
|
336
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.11612 seconds |
|
337
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.11464 seconds |
|
338
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.16596 seconds |
|
339
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.11661 seconds |
|
340
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.12803 seconds |
|
341
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.27266 seconds |
|
342
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.12028 seconds |
|
343
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.45897 seconds |
|
344
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.09418 seconds |
|
345
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.15726 seconds |
|
346
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.20721 seconds |
|
347
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.31511 seconds |
|
348
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.1267 seconds |
|
349
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.07766 seconds |
|
350
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.38987 seconds |
|
351
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.43084 seconds |
|
352
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.72311 seconds |
|
353
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.38964 seconds |
|
354
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.26377 seconds |
|
355
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.21728 seconds |
|
356
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.23688 seconds |
|
357
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.19772 seconds |
|
358
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.14419 seconds |
|
359
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.1492 seconds |
|
360
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.2826 seconds |
|
361
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.14205 seconds |
|
362
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.29559 seconds |
|
363
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.46163 seconds |
|
364
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.35817 seconds |
|
365
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.36818 seconds |
|
366
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.0419 seconds |
|
367
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.25771 seconds |
|
368
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 0.78968 seconds |
|
369
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.24795 seconds |
|
370
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.09899 seconds |
|
371
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.24032 seconds |
|
372
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 0.98006 seconds |
|
373
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 0.28837 seconds |
|
374
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.87015 seconds |
|
375
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.64557 seconds |
|
376
|
+
./spec/features/exhibits/administration_spec.rb[1:1:8] | passed | 0.59917 seconds |
|
377
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 1.02 seconds |
|
378
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.27574 seconds |
|
379
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.64861 seconds |
|
380
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:4] | passed | 0.64823 seconds |
|
381
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:1] | passed | 0.60236 seconds |
|
382
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:2] | passed | 0.18831 seconds |
|
383
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.52934 seconds |
|
384
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 0.76468 seconds |
|
385
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.21555 seconds |
|
386
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.60995 seconds |
|
387
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.41235 seconds |
|
388
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.51959 seconds |
|
389
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 0.27958 seconds |
|
390
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 0.33069 seconds |
|
391
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 0.54956 seconds |
|
392
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 0.43626 seconds |
|
393
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 0.46649 seconds |
|
394
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 0.40984 seconds |
|
395
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 0.45285 seconds |
|
396
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 0.4053 seconds |
|
397
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 0.49744 seconds |
|
398
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 1.32 seconds |
|
399
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 0.80031 seconds |
|
400
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 0.37246 seconds |
|
401
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 0.12746 seconds |
|
402
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 1.96 seconds |
|
403
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 0.31795 seconds |
|
404
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 1.11 seconds |
|
405
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 0.76933 seconds |
|
406
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 0.14186 seconds |
|
407
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 0.9844 seconds |
|
408
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 0.19568 seconds |
|
409
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 1.97 seconds |
|
410
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 0.13912 seconds |
|
411
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 1.11 seconds |
|
412
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 0.17349 seconds |
|
413
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 0.43003 seconds |
|
414
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | passed | 0.89969 seconds |
|
415
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 0.31818 seconds |
|
416
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:2] | passed | 0.35596 seconds |
|
417
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:3] | passed | 0.70323 seconds |
|
418
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:6:1] | passed | 0.30532 seconds |
|
419
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:7:1] | passed | 0.37661 seconds |
|
420
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.18574 seconds |
|
421
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.21962 seconds |
|
422
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.24578 seconds |
|
423
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.09596 seconds |
|
424
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.10414 seconds |
|
425
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.10494 seconds |
|
426
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.11961 seconds |
|
427
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.36453 seconds |
|
428
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.32803 seconds |
|
429
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.27081 seconds |
|
430
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.56 seconds |
|
431
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.27048 seconds |
|
432
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 0.75663 seconds |
|
433
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.40649 seconds |
|
434
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.5684 seconds |
|
435
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.35208 seconds |
|
436
|
+
./spec/features/home_page_spec.rb[1:6] | passed | 0.21132 seconds |
|
437
|
+
./spec/features/home_page_spec.rb[1:7:1:1] | passed | 0.64904 seconds |
|
438
|
+
./spec/features/home_page_spec.rb[1:8:1] | passed | 0.0883 seconds |
|
439
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.81 seconds |
|
440
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.26 seconds |
|
441
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.34078 seconds |
|
442
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.29495 seconds |
|
443
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.83262 seconds |
|
444
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.36 seconds |
|
445
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 2.05 seconds |
|
446
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.53 seconds |
|
447
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:1] | passed | 1.12 seconds |
|
448
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:2] | passed | 1.04 seconds |
|
449
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:3] | passed | 0.87081 seconds |
|
450
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 2.6 seconds |
|
451
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.64 seconds |
|
452
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 3.1 seconds |
|
453
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 2.73 seconds |
|
454
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.61 seconds |
|
455
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 2.77 seconds |
|
456
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 0.97745 seconds |
|
457
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | passed | 1.43 seconds |
|
458
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.05 seconds |
|
459
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.17 seconds |
|
460
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.69 seconds |
|
461
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.23 seconds |
|
462
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.48 seconds |
|
463
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.3 seconds |
|
464
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 1.33 seconds |
|
465
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.69216 seconds |
|
466
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.29 seconds |
|
467
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2 seconds |
|
468
|
+
./spec/features/javascript/blocks/solr_documents_carousel_block_spec.rb[1:1] | passed | 1.19 seconds |
|
469
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 1.3 seconds |
|
470
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 0.96004 seconds |
|
471
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:1] | passed | 1.04 seconds |
|
472
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:2] | passed | 0.62504 seconds |
|
473
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.57 seconds |
|
474
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:2] | pending | 0.04504 seconds |
|
475
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.17 seconds |
|
476
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.23 seconds |
|
477
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 0.91012 seconds |
|
478
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.61969 seconds |
|
479
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.53604 seconds |
|
480
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 2.18 seconds |
|
481
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 0.84064 seconds |
|
482
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.43096 seconds |
|
483
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 0.74889 seconds |
|
484
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.40172 seconds |
|
485
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.40512 seconds |
|
486
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 0.72749 seconds |
|
487
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.43387 seconds |
|
488
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.45882 seconds |
|
489
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.34 seconds |
|
490
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.85 seconds |
|
491
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.41 seconds |
|
492
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 1.19 seconds |
|
493
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 0.79261 seconds |
|
494
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 0.64026 seconds |
|
495
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 0.91191 seconds |
|
496
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 0.8493 seconds |
|
497
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 0.90072 seconds |
|
498
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 0.74586 seconds |
|
499
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.78826 seconds |
|
500
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.70588 seconds |
|
501
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 0.94399 seconds |
|
502
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.1683 seconds |
|
503
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.11535 seconds |
|
504
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.09178 seconds |
|
505
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.16518 seconds |
|
506
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.38244 seconds |
|
507
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.16606 seconds |
|
508
|
+
./spec/features/main_navigation_spec.rb[1:7:1] | passed | 0.38947 seconds |
|
509
|
+
./spec/features/main_navigation_spec.rb[1:7:2:1] | passed | 0.40561 seconds |
|
510
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.21506 seconds |
|
511
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.24018 seconds |
|
512
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.23454 seconds |
|
513
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 0.74621 seconds |
|
514
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 0.63949 seconds |
|
515
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.17936 seconds |
|
516
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.13773 seconds |
|
517
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.07144 seconds |
|
518
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.07054 seconds |
|
519
|
+
./spec/features/site_users_management_spec.rb[1:1] | passed | 0.35385 seconds |
|
520
|
+
./spec/features/site_users_management_spec.rb[1:2:1] | passed | 0.39047 seconds |
|
521
|
+
./spec/features/site_users_management_spec.rb[1:3] | passed | 0.57511 seconds |
|
522
|
+
./spec/features/site_users_management_spec.rb[1:4] | passed | 0.76137 seconds |
|
523
|
+
./spec/features/site_users_management_spec.rb[1:5] | passed | 0.52908 seconds |
|
524
|
+
./spec/features/site_users_management_spec.rb[1:6] | passed | 0.33035 seconds |
|
525
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.82 seconds |
|
526
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.28804 seconds |
|
527
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.07276 seconds |
|
528
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.00857 seconds |
|
529
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.00657 seconds |
|
530
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.00639 seconds |
|
531
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.00644 seconds |
|
532
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.00645 seconds |
|
533
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.04583 seconds |
|
534
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.00943 seconds |
|
535
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.00797 seconds |
|
536
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.04195 seconds |
|
537
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.04751 seconds |
|
538
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.0078 seconds |
|
539
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01021 seconds |
|
540
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.01175 seconds |
|
541
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.00825 seconds |
|
542
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01052 seconds |
|
543
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.00985 seconds |
|
544
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.00686 seconds |
|
545
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.00698 seconds |
|
546
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.00616 seconds |
|
547
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.00842 seconds |
|
548
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.04534 seconds |
|
549
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.04374 seconds |
|
550
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.04531 seconds |
|
551
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.04618 seconds |
|
552
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.06438 seconds |
|
553
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.04208 seconds |
|
554
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.04476 seconds |
|
555
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.04284 seconds |
|
556
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.04464 seconds |
|
557
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.04817 seconds |
|
558
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.0406 seconds |
|
559
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.04773 seconds |
|
560
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.00842 seconds |
|
561
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.04408 seconds |
|
562
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.00719 seconds |
|
563
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.04608 seconds |
|
564
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.00718 seconds |
|
565
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:1] | passed | 0.00726 seconds |
|
566
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:2] | passed | 0.00753 seconds |
|
567
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:3] | passed | 0.00783 seconds |
|
568
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:4] | passed | 0.00699 seconds |
|
569
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.04474 seconds |
|
570
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.13311 seconds |
|
571
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.10922 seconds |
|
572
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.1072 seconds |
|
573
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.00622 seconds |
|
574
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.00704 seconds |
|
575
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.00693 seconds |
|
576
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.04554 seconds |
|
577
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.03867 seconds |
|
578
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.03744 seconds |
|
579
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.00695 seconds |
|
580
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.03778 seconds |
|
581
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.00795 seconds |
|
582
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.04244 seconds |
|
583
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.0465 seconds |
|
584
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.06532 seconds |
|
585
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:1:1] | passed | 0.04312 seconds |
|
586
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:2:1] | passed | 0.00771 seconds |
|
587
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:1:1] | passed | 0.03875 seconds |
|
588
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:2:1] | passed | 0.03919 seconds |
|
589
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:1:1] | passed | 0.00765 seconds |
|
590
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:2:1] | passed | 0.00685 seconds |
|
591
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.04157 seconds |
|
592
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.00884 seconds |
|
593
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.00791 seconds |
|
594
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.00666 seconds |
|
595
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.05621 seconds |
|
596
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.05146 seconds |
|
597
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.04954 seconds |
|
598
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.05155 seconds |
|
599
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.04897 seconds |
|
600
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.05329 seconds |
|
601
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.07412 seconds |
|
602
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.04916 seconds |
|
603
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.04832 seconds |
|
604
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.05252 seconds |
|
605
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.05094 seconds |
|
606
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.06859 seconds |
|
607
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.07408 seconds |
|
608
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.07665 seconds |
|
609
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:6:1:1] | passed | 0.0738 seconds |
|
610
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:6:2:1] | passed | 0.08605 seconds |
|
611
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:7:1] | passed | 0.09035 seconds |
|
612
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.00822 seconds |
|
613
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.009 seconds |
|
614
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.00701 seconds |
|
615
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.00607 seconds |
|
616
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.00846 seconds |
|
617
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.00735 seconds |
|
618
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:3] | passed | 0.00735 seconds |
|
619
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.0069 seconds |
|
620
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.00657 seconds |
|
621
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.00809 seconds |
|
622
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.00861 seconds |
|
623
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.05307 seconds |
|
624
|
+
./spec/i18n_spec.rb[1:1] | pending | 1.78 seconds |
|
625
|
+
./spec/i18n_spec.rb[1:2] | passed | 1.87 seconds |
|
626
|
+
./spec/i18n_spec.rb[1:3] | passed | 0.61825 seconds |
|
627
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.04224 seconds |
|
628
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.09932 seconds |
|
629
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:3:1] | passed | 0.06916 seconds |
|
630
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00741 seconds |
|
631
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.08492 seconds |
|
632
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.05002 seconds |
|
633
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:2] | passed | 0.05116 seconds |
|
634
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:3] | passed | 0.05014 seconds |
|
635
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.05088 seconds |
|
636
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.04597 seconds |
|
637
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.05333 seconds |
|
638
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.05362 seconds |
|
639
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.05175 seconds |
|
640
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.05478 seconds |
|
641
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.05822 seconds |
|
642
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.05045 seconds |
|
643
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.0133 seconds |
|
644
|
+
./spec/lib/migration/page_language_spec.rb[1:1:1] | passed | 0.04566 seconds |
|
645
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.00543 seconds |
|
646
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.00504 seconds |
|
647
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.0054 seconds |
|
648
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.00503 seconds |
|
649
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00665 seconds |
|
650
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.00574 seconds |
|
651
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.03639 seconds |
|
652
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.0058 seconds |
|
653
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.00541 seconds |
|
654
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.0053 seconds |
|
655
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.03852 seconds |
|
656
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.00637 seconds |
|
657
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.00547 seconds |
|
658
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.0056 seconds |
|
659
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.00536 seconds |
|
660
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:3:1] | passed | 0.00528 seconds |
|
661
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:1] | passed | 0.00556 seconds |
|
662
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:2] | passed | 0.00624 seconds |
|
663
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.02144 seconds |
|
664
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.00835 seconds |
|
665
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.00661 seconds |
|
666
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.00638 seconds |
|
667
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.00656 seconds |
|
668
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:6:1] | passed | 0.00864 seconds |
|
669
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.04654 seconds |
|
670
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.04446 seconds |
|
671
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.04668 seconds |
|
672
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.05704 seconds |
|
673
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:1:1] | passed | 0.06922 seconds |
|
674
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:2:1] | passed | 0.05411 seconds |
|
675
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:1] | passed | 0.05658 seconds |
|
676
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:2] | passed | 0.06248 seconds |
|
677
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.04221 seconds |
|
678
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.04127 seconds |
|
679
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.04269 seconds |
|
680
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.04209 seconds |
|
681
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.044 seconds |
|
682
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.04328 seconds |
|
683
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.04581 seconds |
|
684
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:1] | passed | 0.04485 seconds |
|
685
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:2] | passed | 0.04803 seconds |
|
686
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:3] | passed | 0.0418 seconds |
|
687
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:1] | passed | 0.04111 seconds |
|
688
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:2] | passed | 0.04269 seconds |
|
689
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:3] | passed | 0.03996 seconds |
|
690
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00491 seconds |
|
691
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00443 seconds |
|
692
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.00517 seconds |
|
693
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00654 seconds |
|
694
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00722 seconds |
|
695
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00599 seconds |
|
696
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.00552 seconds |
|
697
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.04135 seconds |
|
698
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.03949 seconds |
|
699
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.0515 seconds |
|
700
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.01083 seconds |
|
701
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.0106 seconds |
|
702
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.00856 seconds |
|
703
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.01243 seconds |
|
704
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.04168 seconds |
|
705
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.0676 seconds |
|
706
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.03824 seconds |
|
707
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.04952 seconds |
|
708
|
+
./spec/models/solr_document_spec.rb[1:10:3] | passed | 0.03632 seconds |
|
709
|
+
./spec/models/solr_document_spec.rb[1:10:4] | passed | 0.03671 seconds |
|
710
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.0525 seconds |
|
711
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.0853 seconds |
|
712
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.06259 seconds |
|
713
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.0505 seconds |
|
714
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.0384 seconds |
|
715
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.03769 seconds |
|
716
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.04078 seconds |
|
717
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.04148 seconds |
|
718
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.03826 seconds |
|
719
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00682 seconds |
|
720
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.00664 seconds |
|
721
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.00658 seconds |
|
722
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.00632 seconds |
|
723
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.00564 seconds |
|
724
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.00632 seconds |
|
725
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.00607 seconds |
|
726
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.0379 seconds |
|
727
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.03749 seconds |
|
728
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.0462 seconds |
|
729
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.04011 seconds |
|
730
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.04642 seconds |
|
731
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.03919 seconds |
|
732
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.04058 seconds |
|
733
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.05107 seconds |
|
734
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.03872 seconds |
|
735
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.01766 seconds |
|
736
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.04467 seconds |
|
737
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.05114 seconds |
|
738
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.05117 seconds |
|
739
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.05351 seconds |
|
740
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.04713 seconds |
|
741
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.04387 seconds |
|
742
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.04795 seconds |
|
743
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.04502 seconds |
|
744
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.04602 seconds |
|
745
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.06059 seconds |
|
746
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.0467 seconds |
|
747
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.04326 seconds |
|
748
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.04631 seconds |
|
749
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.04459 seconds |
|
750
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.04723 seconds |
|
751
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.05571 seconds |
|
752
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.0522 seconds |
|
753
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.04356 seconds |
|
754
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.04432 seconds |
|
755
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.05092 seconds |
|
756
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.05125 seconds |
|
757
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.04507 seconds |
|
758
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.04486 seconds |
|
759
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.04558 seconds |
|
760
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.04385 seconds |
|
761
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.04448 seconds |
|
762
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.04559 seconds |
|
763
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.04418 seconds |
|
764
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.04541 seconds |
|
765
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.04534 seconds |
|
766
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.05024 seconds |
|
767
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.04581 seconds |
|
768
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.00573 seconds |
|
769
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.00565 seconds |
|
770
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.04412 seconds |
|
771
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.03991 seconds |
|
772
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.04198 seconds |
|
773
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.045 seconds |
|
774
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.05459 seconds |
|
775
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.05004 seconds |
|
776
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.04777 seconds |
|
777
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.05027 seconds |
|
778
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:2:1] | passed | 0.00625 seconds |
|
779
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.03692 seconds |
|
780
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.04136 seconds |
|
781
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.04458 seconds |
|
782
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.04044 seconds |
|
783
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.0381 seconds |
|
784
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.04068 seconds |
|
785
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.04143 seconds |
|
786
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.04384 seconds |
|
787
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.04267 seconds |
|
788
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.04102 seconds |
|
789
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.04175 seconds |
|
790
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:3] | passed | 0.04664 seconds |
|
791
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.04245 seconds |
|
792
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.03886 seconds |
|
793
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.04318 seconds |
|
794
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.04765 seconds |
|
795
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.04507 seconds |
|
796
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.03947 seconds |
|
797
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.04155 seconds |
|
798
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.04213 seconds |
|
799
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.04307 seconds |
|
800
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.04266 seconds |
|
801
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.04404 seconds |
|
802
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.04042 seconds |
|
803
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.03663 seconds |
|
804
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.0396 seconds |
|
805
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.03934 seconds |
|
806
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.0441 seconds |
|
807
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.04672 seconds |
|
808
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.05814 seconds |
|
809
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.04332 seconds |
|
810
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.03963 seconds |
|
811
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.04118 seconds |
|
812
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.04422 seconds |
|
813
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.04724 seconds |
|
814
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.04257 seconds |
|
815
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.0396 seconds |
|
816
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.03971 seconds |
|
817
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.03735 seconds |
|
818
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.0435 seconds |
|
819
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.0432 seconds |
|
820
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.0407 seconds |
|
821
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.03931 seconds |
|
822
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.04136 seconds |
|
823
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.04047 seconds |
|
824
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.03989 seconds |
|
825
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:6:1] | passed | 0.04286 seconds |
|
826
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.03994 seconds |
|
827
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.03759 seconds |
|
828
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.04075 seconds |
|
829
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.03821 seconds |
|
830
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.03877 seconds |
|
831
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.03761 seconds |
|
832
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.03631 seconds |
|
833
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.03944 seconds |
|
834
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.03885 seconds |
|
835
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.0428 seconds |
|
836
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.05286 seconds |
|
837
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.04144 seconds |
|
838
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.04338 seconds |
|
839
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.03979 seconds |
|
840
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.03932 seconds |
|
841
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.03988 seconds |
|
842
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1] | passed | 0.03661 seconds |
|
843
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1:1] | passed | 0.04168 seconds |
|
844
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1:2] | passed | 0.03976 seconds |
|
845
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1:3] | passed | 0.03513 seconds |
|
846
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.04195 seconds |
|
847
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.03694 seconds |
|
848
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:1] | passed | 0.03948 seconds |
|
849
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:2] | passed | 0.03782 seconds |
|
850
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:3] | passed | 0.03674 seconds |
|
851
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.00596 seconds |
|
852
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.00524 seconds |
|
853
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.00825 seconds |
|
854
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.0104 seconds |
|
855
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.01532 seconds |
|
856
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.00697 seconds |
|
857
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.00744 seconds |
|
858
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:3:1] | passed | 0.00727 seconds |
|
859
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.00604 seconds |
|
860
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2:1] | passed | 0.00959 seconds |
|
861
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.00984 seconds |
|
862
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.00914 seconds |
|
863
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:1] | passed | 0.00556 seconds |
|
864
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:2] | passed | 0.00946 seconds |
|
865
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:3] | passed | 0.0059 seconds |
|
866
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:4] | passed | 0.01014 seconds |
|
867
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00647 seconds |
|
868
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.03874 seconds |
|
869
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.03863 seconds |
|
870
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.03811 seconds |
|
871
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.03537 seconds |
|
872
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.00529 seconds |
|
873
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.03558 seconds |
|
874
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.0366 seconds |
|
875
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.00744 seconds |
|
876
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.03805 seconds |
|
877
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.00758 seconds |
|
878
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.00904 seconds |
|
879
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.00973 seconds |
|
880
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.00896 seconds |
|
881
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.04 seconds |
|
882
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.04476 seconds |
|
883
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.04234 seconds |
|
884
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.046 seconds |
|
885
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.0464 seconds |
|
886
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.05714 seconds |
|
887
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.04316 seconds |
|
888
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.04499 seconds |
|
889
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.0559 seconds |
|
890
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.04068 seconds |
|
891
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:1:1:1] | passed | 0.00903 seconds |
|
892
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:1:1:1] | passed | 0.03847 seconds |
|
893
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:2:1:1] | passed | 0.03758 seconds |
|
894
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:1:1:1] | passed | 0.00606 seconds |
|
895
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:2:1:1] | passed | 0.04247 seconds |
|
896
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:1] | passed | 0.03768 seconds |
|
897
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:2] | passed | 0.09006 seconds |
|
898
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.01052 seconds |
|
899
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.01061 seconds |
|
900
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.03274 seconds |
|
901
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4] | passed | 0.02203 seconds |
|
902
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.01651 seconds |
|
903
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:2] | passed | 0.03549 seconds |
|
904
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.01089 seconds |
|
905
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7] | passed | 0.01376 seconds |
|
906
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.03611 seconds |
|
907
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.03617 seconds |
|
908
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.03996 seconds |
|
909
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.04062 seconds |
|
910
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.01189 seconds |
|
911
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.04808 seconds |
|
912
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.056 seconds |
|
913
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:2] | passed | 0.05278 seconds |
|
914
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.01046 seconds |
|
915
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.01011 seconds |
|
916
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.04609 seconds |
|
917
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:2] | passed | 0.03834 seconds |
|
918
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.04985 seconds |
|
919
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.03465 seconds |
|
920
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.04269 seconds |
|
921
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:3:1] | passed | 0.03694 seconds |
|
922
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.04055 seconds |
|
923
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.05564 seconds |
|
924
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.03615 seconds |
|
925
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.0117 seconds |
|
926
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:2] | passed | 0.01472 seconds |
|
927
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:3:1] | passed | 0.01199 seconds |
|
928
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:4:1] | passed | 0.01379 seconds |
|
929
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:1:1] | passed | 0.0466 seconds |
|
930
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:2:1] | passed | 0.01032 seconds |
|
931
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.01171 seconds |
|
932
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22] | passed | 0.01016 seconds |
|
933
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:1] | passed | 0.04325 seconds |
|
934
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:2] | passed | 0.04164 seconds |
|
935
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:3] | passed | 0.04551 seconds |
|
936
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:4] | passed | 0.0454 seconds |
|
937
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.00723 seconds |
|
938
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.0533 seconds |
|
939
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.05824 seconds |
|
940
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.05412 seconds |
|
941
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.06229 seconds |
|
942
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.00598 seconds |
|
943
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.03791 seconds |
|
944
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.05046 seconds |
|
945
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.00698 seconds |
|
946
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.00732 seconds |
|
947
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.04902 seconds |
|
948
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.04949 seconds |
|
949
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.05254 seconds |
|
950
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1] | passed | 0.01493 seconds |
|
951
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:1] | passed | 0.00698 seconds |
|
952
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:2] | passed | 0.00775 seconds |
|
953
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:3:1] | passed | 0.01505 seconds |
|
954
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2:1] | passed | 0.0081 seconds |
|
955
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2:2] | passed | 0.00693 seconds |
|
956
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.00877 seconds |
|
957
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.01064 seconds |
|
958
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:3] | passed | 0.01064 seconds |
|
959
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:1] | passed | 0.00646 seconds |
|
960
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:2] | passed | 0.00578 seconds |
|
961
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.03917 seconds |
|
962
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.04025 seconds |
|
963
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3:1] | passed | 0.03718 seconds |
|
964
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.006 seconds |
|
965
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00575 seconds |
|
966
|
+
./spec/models/spotlight/group_spec.rb[1:1:1] | passed | 0.21373 seconds |
|
967
|
+
./spec/models/spotlight/group_spec.rb[1:1:2] | passed | 0.20298 seconds |
|
968
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.00679 seconds |
|
969
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.00561 seconds |
|
970
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.03837 seconds |
|
971
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.04169 seconds |
|
972
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.04202 seconds |
|
973
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.04343 seconds |
|
974
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.04472 seconds |
|
975
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.0059 seconds |
|
976
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.00557 seconds |
|
977
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.04708 seconds |
|
978
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.04151 seconds |
|
979
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.0375 seconds |
|
980
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.03858 seconds |
|
981
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.00839 seconds |
|
982
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.00601 seconds |
|
983
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00623 seconds |
|
984
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.00567 seconds |
|
985
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.00557 seconds |
|
986
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:1:1] | passed | 0.04781 seconds |
|
987
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:1] | passed | 0.04824 seconds |
|
988
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:2] | passed | 0.05336 seconds |
|
989
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.04924 seconds |
|
990
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.04879 seconds |
|
991
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.04856 seconds |
|
992
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.04816 seconds |
|
993
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.04379 seconds |
|
994
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.04901 seconds |
|
995
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.04796 seconds |
|
996
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.08772 seconds |
|
997
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.09843 seconds |
|
998
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.07728 seconds |
|
999
|
+
./spec/models/spotlight/page_spec.rb[1:8:3:1] | passed | 0.08118 seconds |
|
1000
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.07455 seconds |
|
1001
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.08132 seconds |
|
1002
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.07891 seconds |
|
1003
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.08534 seconds |
|
1004
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.08446 seconds |
|
1005
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.08471 seconds |
|
1006
|
+
./spec/models/spotlight/page_spec.rb[1:11:3] | passed | 0.0837 seconds |
|
1007
|
+
./spec/models/spotlight/page_spec.rb[1:11:4:1] | passed | 0.08206 seconds |
|
1008
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.04983 seconds |
|
1009
|
+
./spec/models/spotlight/page_spec.rb[1:12:2] | passed | 0.05304 seconds |
|
1010
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.12222 seconds |
|
1011
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.07231 seconds |
|
1012
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.05901 seconds |
|
1013
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.04911 seconds |
|
1014
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.05142 seconds |
|
1015
|
+
./spec/models/spotlight/page_spec.rb[1:15:4] | passed | 0.05161 seconds |
|
1016
|
+
./spec/models/spotlight/page_spec.rb[1:15:5:1] | passed | 0.06288 seconds |
|
1017
|
+
./spec/models/spotlight/page_spec.rb[1:15:6:1] | passed | 0.05789 seconds |
|
1018
|
+
./spec/models/spotlight/page_spec.rb[1:15:7:1] | passed | 0.07336 seconds |
|
1019
|
+
./spec/models/spotlight/page_spec.rb[1:16:1] | passed | 0.0778 seconds |
|
1020
|
+
./spec/models/spotlight/page_spec.rb[1:16:2] | passed | 0.0719 seconds |
|
1021
|
+
./spec/models/spotlight/page_spec.rb[1:16:3] | passed | 0.0684 seconds |
|
1022
|
+
./spec/models/spotlight/page_spec.rb[1:16:4] | passed | 0.07806 seconds |
|
1023
|
+
./spec/models/spotlight/page_spec.rb[1:16:5] | passed | 0.07908 seconds |
|
1024
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 2.54 seconds |
|
1025
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.50914 seconds |
|
1026
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.49302 seconds |
|
1027
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:2] | passed | 0.56969 seconds |
|
1028
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.52463 seconds |
|
1029
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.48308 seconds |
|
1030
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.50444 seconds |
|
1031
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1] | passed | 0.00643 seconds |
|
1032
|
+
./spec/models/spotlight/resource_spec.rb[1:1:2] | passed | 0.0075 seconds |
|
1033
|
+
./spec/models/spotlight/resource_spec.rb[1:1:3:1] | passed | 0.00665 seconds |
|
1034
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.63095 seconds |
|
1035
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.5802 seconds |
|
1036
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3] | passed | 0.6249 seconds |
|
1037
|
+
./spec/models/spotlight/resource_spec.rb[1:2:4] | passed | 0.56728 seconds |
|
1038
|
+
./spec/models/spotlight/resource_spec.rb[1:2:5] | unknown | |
|
1039
|
+
./spec/models/spotlight/resource_spec.rb[1:2:6:1] | unknown | |
|
1040
|
+
./spec/models/spotlight/resource_spec.rb[1:2:7] | passed | 0.57722 seconds |
|
1041
|
+
./spec/models/spotlight/resource_spec.rb[1:2:8:1] | passed | 0.66073 seconds |
|
1042
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | unknown | |
|
1043
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.03898 seconds |
|
1044
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:2:1] | passed | 0.04203 seconds |
|
1045
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.44023 seconds |
|
1046
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.0514 seconds |
|
1047
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.06688 seconds |
|
1048
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.06672 seconds |
|
1049
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.07098 seconds |
|
1050
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.08011 seconds |
|
1051
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.06111 seconds |
|
1052
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.05701 seconds |
|
1053
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.07661 seconds |
|
1054
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.06433 seconds |
|
1055
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.06567 seconds |
|
1056
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.06764 seconds |
|
1057
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.0665 seconds |
|
1058
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.06171 seconds |
|
1059
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.07157 seconds |
|
1060
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.06698 seconds |
|
1061
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.06479 seconds |
|
1062
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.06452 seconds |
|
1063
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.04993 seconds |
|
1064
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:1:1] | passed | 0.06102 seconds |
|
1065
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:1] | passed | 0.05708 seconds |
|
1066
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:2] | passed | 0.04866 seconds |
|
1067
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:3] | passed | 0.05468 seconds |
|
1068
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.00962 seconds |
|
1069
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01254 seconds |
|
1070
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.01274 seconds |
|
1071
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.0162 seconds |
|
1072
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.01663 seconds |
|
1073
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.03011 seconds |
|
1074
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1] | passed | 0.04161 seconds |
|
1075
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:2:1] | passed | 0.04398 seconds |
|
1076
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1] | passed | 0.04271 seconds |
|
1077
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.04342 seconds |
|
1078
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:1] | passed | 0.05003 seconds |
|
1079
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:2] | passed | 0.05949 seconds |
|
1080
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.01281 seconds |
|
1081
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.00617 seconds |
|
1082
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.01745 seconds |
|
1083
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.01449 seconds |
|
1084
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.00872 seconds |
|
1085
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.00851 seconds |
|
1086
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.06268 seconds |
|
1087
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.12363 seconds |
|
1088
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.11935 seconds |
|
1089
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.04336 seconds |
|
1090
|
+
./spec/models/spotlight/search_spec.rb[1:4:2] | passed | 0.05145 seconds |
|
1091
|
+
./spec/models/spotlight/search_spec.rb[1:4:3:1] | passed | 0.04189 seconds |
|
1092
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.04813 seconds |
|
1093
|
+
./spec/models/spotlight/search_spec.rb[1:5:2:1] | passed | 0.0474 seconds |
|
1094
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.04613 seconds |
|
1095
|
+
./spec/models/spotlight/search_spec.rb[1:7:1] | passed | 0.03497 seconds |
|
1096
|
+
./spec/models/spotlight/search_spec.rb[1:7:2] | passed | 0.03572 seconds |
|
1097
|
+
./spec/models/spotlight/search_spec.rb[1:8:1] | passed | 0.18586 seconds |
|
1098
|
+
./spec/models/spotlight/search_spec.rb[1:8:2] | passed | 0.148 seconds |
|
1099
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.00621 seconds |
|
1100
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.10252 seconds |
|
1101
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.03726 seconds |
|
1102
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.04066 seconds |
|
1103
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.04438 seconds |
|
1104
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.04262 seconds |
|
1105
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.05429 seconds |
|
1106
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.05018 seconds |
|
1107
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.03874 seconds |
|
1108
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.04822 seconds |
|
1109
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.00944 seconds |
|
1110
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.00613 seconds |
|
1111
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.00598 seconds |
|
1112
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00667 seconds |
|
1113
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00573 seconds |
|
1114
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.00642 seconds |
|
1115
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.04697 seconds |
|
1116
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.04615 seconds |
|
1117
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.04562 seconds |
|
1118
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:4:1:1] | passed | 0.04274 seconds |
|
1119
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:1:1] | passed | 0.04776 seconds |
|
1120
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:2:1] | passed | 0.04319 seconds |
|
1121
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:3:1] | passed | 0.04711 seconds |
|
1122
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.00643 seconds |
|
1123
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.00569 seconds |
|
1124
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.01897 seconds |
|
1125
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.04166 seconds |
|
1126
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.0136 seconds |
|
1127
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.01276 seconds |
|
1128
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.01305 seconds |
|
1129
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.01244 seconds |
|
1130
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.01226 seconds |
|
1131
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.01205 seconds |
|
1132
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.01166 seconds |
|
1133
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.01778 seconds |
|
1134
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.01296 seconds |
|
1135
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.01237 seconds |
|
1136
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.00598 seconds |
|
1137
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00539 seconds |
|
1138
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:3] | passed | 0.00568 seconds |
|
1139
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:4:1] | passed | 0.47664 seconds |
|
1140
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.02052 seconds |
|
1141
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00591 seconds |
|
1142
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00554 seconds |
|
1143
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.00706 seconds |
|
1144
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.0061 seconds |
|
1145
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00606 seconds |
|
1146
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.00648 seconds |
|
1147
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.0063 seconds |
|
1148
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.00634 seconds |
|
1149
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.00646 seconds |
|
1150
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.0062 seconds |
|
1151
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.01037 seconds |
|
1152
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.04924 seconds |
|
1153
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.06028 seconds |
|
1154
|
+
./spec/services/spotlight/etl/context_spec.rb[1:1:1] | passed | 0.11745 seconds |
|
1155
|
+
./spec/services/spotlight/etl/context_spec.rb[1:2:1] | passed | 0.13055 seconds |
|
1156
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:1:1] | passed | 0.11049 seconds |
|
1157
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:2:1] | passed | 0.00745 seconds |
|
1158
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:3:1] | passed | 0.00709 seconds |
|
1159
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:4:1] | passed | 0.00888 seconds |
|
1160
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:1] | passed | 0.14493 seconds |
|
1161
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:2] | passed | 0.14518 seconds |
|
1162
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:3] | passed | 0.1459 seconds |
|
1163
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:4] | passed | 0.13314 seconds |
|
1164
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:5] | passed | 0.20584 seconds |
|
1165
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:6] | passed | 0.14503 seconds |
|
1166
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:7] | passed | 0.21611 seconds |
|
1167
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:1] | passed | 0.14395 seconds |
|
1168
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:2] | passed | 0.1364 seconds |
|
1169
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:2:1] | passed | 0.10748 seconds |
|
1170
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:1:1] | passed | 0.0963 seconds |
|
1171
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:2:1] | passed | 0.0945 seconds |
|
1172
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:1] | passed | 0.08518 seconds |
|
1173
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:2] | passed | 0.08614 seconds |
|
1174
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:1] | passed | 0.08646 seconds |
|
1175
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:2] | passed | 0.08708 seconds |
|
1176
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:1] | passed | 0.09071 seconds |
|
1177
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:2] | passed | 0.10414 seconds |
|
1178
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:1] | passed | 0.08843 seconds |
|
1179
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:2] | passed | 0.00698 seconds |
|
1180
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:3:1] | passed | 0.01579 seconds |
|
1181
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:1] | passed | 0.00775 seconds |
|
1182
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:2] | passed | 0.09568 seconds |
|
1183
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:1] | passed | 0.00928 seconds |
|
1184
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:2:1] | passed | 0.00755 seconds |
|
1185
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:1] | passed | 0.05025 seconds |
|
1186
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:2] | passed | 0.05196 seconds |
|
1187
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:3] | passed | 0.05236 seconds |
|
1188
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:4] | passed | 0.05488 seconds |
|
1189
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:5] | passed | 0.06334 seconds |
|
1190
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:6] | passed | 0.05332 seconds |
|
1191
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:7] | passed | 0.05762 seconds |
|
1192
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:8] | passed | 0.05917 seconds |
|
1193
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:9] | passed | 0.0795 seconds |
|
1194
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:10] | passed | 0.0572 seconds |
|
1195
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:11] | passed | 0.05348 seconds |
|
1196
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:12] | passed | 0.05199 seconds |
|
1197
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:13] | passed | 0.05002 seconds |
|
1198
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:14] | passed | 0.05389 seconds |
|
1199
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:15] | passed | 0.06248 seconds |
|
1200
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:1] | passed | 0.131 seconds |
|
1201
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:2:1] | passed | 0.12604 seconds |
|
1202
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:3] | passed | 0.12343 seconds |
|
1203
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:4] | passed | 0.14255 seconds |
|
1204
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:5:1] | passed | 0.13115 seconds |
|
1205
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:6] | passed | 0.12442 seconds |
|
1206
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:7] | passed | 0.12206 seconds |
|
1207
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:1:1] | passed | 0.14026 seconds |
|
1208
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:2:1] | passed | 0.15211 seconds |
|
1209
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:1] | passed | 0.14208 seconds |
|
1210
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:2] | passed | 0.13116 seconds |
|
1211
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:10] | passed | 0.15818 seconds |
|
1212
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:11:1] | passed | 0.12263 seconds |
|
1213
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:12] | passed | 0.15262 seconds |
|
1214
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:13:1] | passed | 0.14052 seconds |
|
1215
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:1] | passed | 0.14992 seconds |
|
1216
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:2] | passed | 0.15728 seconds |
|
1217
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:3] | passed | 0.15968 seconds |
|
1218
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:4:1] | passed | 0.18399 seconds |
|
1219
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:15] | passed | 0.15499 seconds |
|
1220
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:16] | passed | 0.13138 seconds |
|
1221
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:1] | passed | 0.17359 seconds |
|
1222
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:2] | passed | 0.17258 seconds |
|
1223
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:3] | passed | 0.17139 seconds |
|
1224
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:4:1] | passed | 0.17763 seconds |
|
1225
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:5:1] | passed | 0.21054 seconds |
|
1226
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:1] | passed | 0.19846 seconds |
|
1227
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:2] | passed | 0.19582 seconds |
|
1228
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:18:1] | passed | 0.13808 seconds |
|
1229
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:19:1] | passed | 0.13376 seconds |
|
1230
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:1] | passed | 0.25907 seconds |
|
1231
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:2] | passed | 0.21549 seconds |
|
1232
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:1] | passed | 0.12924 seconds |
|
1233
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:2] | passed | 0.11178 seconds |
|
1234
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:1] | passed | 0.13029 seconds |
|
1235
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:2] | passed | 0.1214 seconds |
|
1236
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:19:1] | passed | 0.03623 seconds |
|
1237
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:20:1] | passed | 0.04622 seconds |
|
1238
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.01689 seconds |
|
1239
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.00918 seconds |
|
1240
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.0087 seconds |
|
1241
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.00957 seconds |
|
1242
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.00843 seconds |
|
1243
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.01008 seconds |
|
1244
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.07847 seconds |
|
1245
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.07552 seconds |
|
1246
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.11155 seconds |
|
1247
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.00623 seconds |
|
1248
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.00531 seconds |
|
1249
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.00512 seconds |
|
1250
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.0051 seconds |
|
1251
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.00851 seconds |
|
1252
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.00944 seconds |
|
1253
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.00974 seconds |
|
1254
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.00918 seconds |
|
1255
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.00885 seconds |
|
1256
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.02098 seconds |
|
1257
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.00929 seconds |
|
1258
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.07321 seconds |
|
1259
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.0544 seconds |
|
1260
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.05812 seconds |
|
1261
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.05597 seconds |
|
1262
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.06555 seconds |
|
1263
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.05092 seconds |
|
1264
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.0547 seconds |
|
1265
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.05893 seconds |
|
1266
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.05964 seconds |
|
1267
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.05004 seconds |
|
1268
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.05737 seconds |
|
1269
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.0572 seconds |
|
1270
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.05025 seconds |
|
1271
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.05754 seconds |
|
1272
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.07458 seconds |
|
1273
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.04547 seconds |
|
1274
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.04585 seconds |
|
1275
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.05054 seconds |
|
1276
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.02036 seconds |
|
1277
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.0252 seconds |
|
1278
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.05583 seconds |
|
1279
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.04637 seconds |
|
1280
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.03998 seconds |
|
1281
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.04939 seconds |
|
1282
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.0534 seconds |
|
1283
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.04394 seconds |
|
1284
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.05075 seconds |
|
1285
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:6:1] | passed | 0.043 seconds |
|
1286
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.05804 seconds |
|
1287
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.04275 seconds |
|
1288
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.04688 seconds |
|
1289
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.04722 seconds |
|
1290
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.04838 seconds |
|
1291
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.05055 seconds |
|
1292
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01186 seconds |
|
1293
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00819 seconds |
|
1294
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.00791 seconds |
|
1295
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.07146 seconds |
|
1296
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 0.64261 seconds |
|
1297
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02883 seconds |
|
1298
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.02841 seconds |
|
1299
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.09091 seconds |
|
1300
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.08068 seconds |
|
1301
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.08732 seconds |
|
1302
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.04914 seconds |
|
1303
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.08675 seconds |
|
1304
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.24997 seconds |
|
1305
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.0838 seconds |
|
1306
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.08419 seconds |
|
1307
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.08257 seconds |
|
1308
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.11083 seconds |
|
1309
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.08392 seconds |
|
1310
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.08518 seconds |
|
1311
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.13574 seconds |
|
1312
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.04779 seconds |
|
1313
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.05378 seconds |
|
1314
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:4] | passed | 0.0737 seconds |
|
1315
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:5] | passed | 0.07594 seconds |
|
1316
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.18557 seconds |
|
1317
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.01872 seconds |
|
1318
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.01863 seconds |
|
1319
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.0117 seconds |
|
1320
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.14982 seconds |
|
1321
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.04761 seconds |
|
1322
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.04124 seconds |
|
1323
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.03934 seconds |
|
1324
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.0427 seconds |
|
1325
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.06095 seconds |
|
1326
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.02639 seconds |
|
1327
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01285 seconds |
|
1328
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.02932 seconds |
|
1329
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.02418 seconds |
|
1330
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.02075 seconds |
|
1331
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.02334 seconds |
|
1332
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.02564 seconds |
|
1333
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.029 seconds |
|
1334
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.01358 seconds |
|
1335
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.0579 seconds |
|
1336
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.05019 seconds |
|
1337
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.15522 seconds |
|
1338
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:1:1] | passed | 0.04432 seconds |
|
1339
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:2] | passed | 0.06786 seconds |
|
1340
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:3] | passed | 0.04723 seconds |
|
1341
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:4:1] | passed | 0.0436 seconds |
|
1342
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.08341 seconds |
|
1343
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 0.04663 seconds |
|
1344
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 0.40556 seconds |
|
1345
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.35513 seconds |
|
1346
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.13582 seconds |
|
1347
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.11115 seconds |
|
1348
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.11131 seconds |
|
1349
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.12461 seconds |
|
1350
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.10395 seconds |
|
1351
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.15211 seconds |
|
1352
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.16912 seconds |
|
1353
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.11696 seconds |
|
1354
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.09839 seconds |
|
1355
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.01555 seconds |
|
1356
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.00998 seconds |
|
1357
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01234 seconds |
|
1358
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.0087 seconds |
|
1359
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.11182 seconds |
|
1360
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.10707 seconds |
|
1361
|
+
./spec/views/spotlight/featured_images/_form.html.erb_spec.rb[1:1] | passed | 0.0494 seconds |
|
1362
|
+
./spec/views/spotlight/featured_images/_upload_form.html.erb_spec.rb[1:1] | passed | 0.05069 seconds |
|
1363
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.04453 seconds |
|
1364
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.04139 seconds |
|
1365
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.0133 seconds |
|
1366
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.08253 seconds |
|
1367
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.05221 seconds |
|
1368
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.2403 seconds |
|
1369
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.10579 seconds |
|
1370
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.01614 seconds |
|
1371
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.02671 seconds |
|
1372
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.01753 seconds |
|
1373
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.0175 seconds |
|
1374
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.02002 seconds |
|
1375
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.01781 seconds |
|
1376
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.03475 seconds |
|
1377
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02052 seconds |
|
1378
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.02876 seconds |
|
1379
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.09333 seconds |
|
1380
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.01218 seconds |
|
1381
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.01136 seconds |
|
1382
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.02853 seconds |
|
1383
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.01292 seconds |
|
1384
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.01328 seconds |
|
1385
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.09251 seconds |
|
1386
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.0147 seconds |
|
1387
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.02265 seconds |
|
1388
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.02656 seconds |
|
1389
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.04474 seconds |
|
1390
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.19427 seconds |
|
1391
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.01716 seconds |
|
1392
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.00951 seconds |
|
1393
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.00832 seconds |
|
1394
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.1708 seconds |
|
1395
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.07088 seconds |
|
1396
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.07722 seconds |
|
1397
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.09063 seconds |
|
1398
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.09492 seconds |
|
1399
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.06316 seconds |
|
1400
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.07531 seconds |
|
1401
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.10085 seconds |
|
1402
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.07673 seconds |
|
1403
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.08186 seconds |
|
1404
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.08274 seconds |
|
1405
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.09115 seconds |
|
1406
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.11579 seconds |
|
1407
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.15443 seconds |
|
1408
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.13716 seconds |
|
1409
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.26008 seconds |
|
1410
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.12688 seconds |
|
1411
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.06041 seconds |
|
1412
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.01862 seconds |
|
1413
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.06904 seconds |
|
1414
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.02081 seconds |
|
1415
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.00967 seconds |
|
1416
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.0668 seconds |
|
1417
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.02 seconds |
|
1418
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.02448 seconds |
|
1419
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.03369 seconds |
|
1420
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.02871 seconds |
|
1421
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:2:1] | passed | 0.01417 seconds |
|
1422
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.03204 seconds |
|
1423
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.0227 seconds |
|
1424
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:3:1] | passed | 0.02504 seconds |
|
1425
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.02908 seconds |
|
1426
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.18315 seconds |
|
1427
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.08122 seconds |
|
1428
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.07178 seconds |
|
1429
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:1] | passed | 0.05695 seconds |
|
1430
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:2] | passed | 0.04912 seconds |
|
1431
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.06344 seconds |
|
1432
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.08614 seconds |
|
1433
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.07924 seconds |
|
1434
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.08329 seconds |
|
1435
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.10023 seconds |
|
1436
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.07243 seconds |
|
1437
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.08977 seconds |
|