blacklight-spotlight 3.0.0.rc2 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- 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/images/blacklight/close.svg +1 -0
- data/app/assets/images/blacklight/zoom_in.svg +1 -0
- data/app/assets/images/blacklight/zoom_out.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_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 +8 -1
- data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +26 -4
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +8 -1
- 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/javascripts/spotlight/user/zpr_links.js.erb +29 -14
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +30 -4
- data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +34 -1
- data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
- data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +4 -0
- data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +92 -0
- data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +5 -4
- data/app/controllers/concerns/spotlight/base.rb +1 -1
- data/app/controllers/concerns/spotlight/catalog.rb +7 -1
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -13
- data/app/controllers/spotlight/browse_controller.rb +15 -17
- data/app/controllers/spotlight/bulk_actions_controller.rb +62 -0
- data/app/controllers/spotlight/bulk_updates_controller.rb +67 -0
- data/app/controllers/spotlight/catalog_controller.rb +17 -14
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/dashboards_controller.rb +5 -4
- data/app/controllers/spotlight/exhibits_controller.rb +1 -1
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
- data/app/controllers/spotlight/pages_controller.rb +8 -13
- data/app/controllers/spotlight/searches_controller.rb +4 -17
- data/app/controllers/spotlight/tags_controller.rb +39 -5
- data/app/helpers/spotlight/application_helper.rb +21 -2
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
- data/app/helpers/spotlight/main_app_helpers.rb +4 -5
- data/app/helpers/spotlight/meta_helper.rb +2 -2
- data/app/helpers/spotlight/pages_helper.rb +1 -8
- data/app/helpers/spotlight/roles_helper.rb +1 -1
- data/app/helpers/spotlight/searches_helper.rb +1 -1
- data/app/jobs/concerns/spotlight/gather_documents.rb +35 -0
- data/app/jobs/concerns/spotlight/job_tracking.rb +64 -0
- data/app/jobs/concerns/spotlight/limit_concurrency.rb +33 -0
- data/app/jobs/spotlight/add_tags_job.rb +31 -0
- data/app/jobs/spotlight/add_uploads_from_csv.rb +4 -3
- data/app/jobs/spotlight/application_job.rb +8 -0
- data/app/jobs/spotlight/change_visibility_job.rb +33 -0
- data/app/jobs/spotlight/cleanup_job_trackers_job.rb +13 -0
- data/app/jobs/spotlight/default_thumbnail_job.rb +1 -3
- data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
- data/app/jobs/spotlight/reindex_exhibit_job.rb +39 -0
- data/app/jobs/spotlight/reindex_job.rb +64 -44
- data/app/jobs/spotlight/remove_tags_job.rb +31 -0
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -2
- data/app/jobs/spotlight/rename_tags_job.rb +33 -0
- data/app/jobs/spotlight/update_job_trackers_job.rb +20 -0
- data/app/models/concerns/spotlight/browse_category_search_builder.rb +59 -0
- data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
- data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
- data/app/models/concerns/spotlight/resources/web.rb +1 -1
- data/app/models/concerns/spotlight/search_builder.rb +11 -0
- data/app/models/concerns/spotlight/solr_document.rb +1 -1
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +2 -2
- data/app/models/concerns/spotlight/user.rb +7 -2
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +9 -0
- data/app/models/sir_trevor_rails/blocks/uploaded_items_block.rb +4 -0
- data/app/models/spotlight/ability.rb +8 -2
- data/app/models/spotlight/about_page.rb +1 -1
- data/app/models/spotlight/attachment.rb +1 -1
- data/app/models/spotlight/background_job_progress.rb +96 -0
- data/app/models/spotlight/blacklight_configuration.rb +28 -7
- data/app/models/spotlight/bulk_update.rb +8 -0
- data/app/models/spotlight/event.rb +13 -0
- data/app/models/spotlight/exhibit.rb +15 -12
- data/app/models/spotlight/feature_page.rb +1 -3
- data/app/models/spotlight/featured_image.rb +41 -2
- data/app/models/spotlight/field_metadata.rb +4 -8
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +1 -1
- data/app/models/spotlight/job_tracker.rb +114 -0
- data/app/models/spotlight/page.rb +3 -5
- data/app/models/spotlight/page_configurations.rb +15 -9
- data/app/models/spotlight/resource.rb +28 -62
- data/app/models/spotlight/resources/iiif_harvester.rb +12 -3
- data/app/models/spotlight/resources/iiif_manifest.rb +9 -7
- data/app/models/spotlight/resources/iiif_service.rb +9 -2
- data/app/models/spotlight/resources/json_upload.rb +12 -0
- data/app/models/spotlight/resources/upload.rb +25 -2
- data/app/models/spotlight/role.rb +1 -2
- data/app/models/spotlight/search.rb +5 -0
- data/app/models/spotlight/solr_document_sidecar.rb +2 -1
- data/app/presenters/spotlight/iiif_manifest_presenter.rb +2 -2
- data/app/services/spotlight/bulk_updates_csv_template_service.rb +93 -0
- data/app/services/spotlight/etl.rb +7 -0
- data/app/services/spotlight/etl/context.rb +52 -0
- data/app/services/spotlight/etl/executor.rb +192 -0
- data/app/services/spotlight/etl/loaders.rb +12 -0
- data/app/services/spotlight/etl/pipeline.rb +81 -0
- data/app/services/spotlight/etl/solr_loader.rb +96 -0
- data/app/services/spotlight/etl/sources.rb +25 -0
- data/app/services/spotlight/etl/step.rb +82 -0
- data/app/services/spotlight/etl/transforms.rb +64 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +50 -22
- data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
- data/app/services/spotlight/validity_checker.rb +5 -5
- data/app/uploaders/spotlight/bulk_updates_uploader.rb +7 -0
- data/app/uploaders/spotlight/featured_image_uploader.rb +1 -1
- data/app/views/catalog/_add_tags.html.erb +28 -0
- data/app/views/catalog/_bulk_actions.html.erb +12 -0
- data/app/views/catalog/_change_visibility.html.erb +35 -0
- data/app/views/catalog/_curator_actions.html.erb +3 -0
- data/app/views/catalog/_remove_tags.html.erb +37 -0
- data/app/views/catalog/_save_search.html.erb +1 -1
- data/app/views/spotlight/about_pages/_sidebar.html.erb +2 -2
- data/app/views/spotlight/browse/_search.html.erb +4 -3
- data/app/views/spotlight/browse/_search_box.html.erb +9 -9
- data/app/views/spotlight/browse/_search_title.html.erb +1 -1
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/bulk_updates/_download.html.erb +23 -0
- data/app/views/spotlight/bulk_updates/_overview.html.erb +1 -0
- data/app/views/spotlight/bulk_updates/_progress_panel.html.erb +19 -0
- data/app/views/spotlight/bulk_updates/_upload.html.erb +12 -0
- data/app/views/spotlight/bulk_updates/edit.html.erb +37 -0
- data/app/views/spotlight/catalog/_admin_header.html.erb +1 -1
- data/app/views/spotlight/catalog/_admin_index_header_default.html.erb +1 -1
- data/app/views/spotlight/catalog/_admin_thumbnail_default.html.erb +3 -2
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/_edit_default.html.erb +2 -2
- data/app/views/spotlight/catalog/_reindex_progress_panel.html.erb +1 -1
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/custom_search_fields/_form.html.erb +1 -1
- data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +6 -6
- data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_sidebar.html.erb +1 -1
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/job_trackers/show.html.erb +79 -0
- data/app/views/spotlight/metadata_configurations/_metadata_field.html.erb +2 -2
- data/app/views/spotlight/pages/_form.html.erb +2 -2
- data/app/views/spotlight/pages/_view_type_group.html.erb +3 -3
- data/app/views/spotlight/pages/show.html.erb +1 -1
- data/app/views/spotlight/resources/_form.html.erb +1 -1
- data/app/views/spotlight/resources/csv_upload/_form.html.erb +1 -1
- data/app/views/spotlight/resources/iiif/_form.html.erb +1 -1
- data/app/views/spotlight/resources/json_upload/_form.html.erb +2 -2
- data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
- data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +2 -2
- data/app/views/spotlight/searches/_form.html.erb +14 -2
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
- data/app/views/spotlight/shared/_locale_picker.html.erb +1 -1
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +45 -0
- data/app/views/spotlight/sir_trevor/blocks/_search_results_block.html.erb +1 -1
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +8 -8
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +7 -7
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +9 -7
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +5 -5
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +4 -0
- data/app/views/spotlight/tags/_tag.html.erb +24 -0
- data/app/views/spotlight/tags/index.html.erb +12 -16
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/edit.html.erb +6 -0
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +6 -0
- data/config/i18n-tasks.yml +6 -0
- data/config/locales/spotlight.ar.yml +11 -1
- data/config/locales/spotlight.en.yml +207 -11
- data/config/routes.rb +39 -1
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/db/migrate/20210122082032_create_job_trackers.rb +22 -0
- data/db/migrate/20210126123041_create_events.rb +15 -0
- data/db/migrate/20210305070001_remove_class_from_sirtrevor_image_blocks.rb +20 -0
- data/db/migrate/20210305171150_create_bulk_updates.rb +9 -0
- data/db/migrate/20210308090000_migrate_caption_values_for_title_key.rb +29 -0
- data/db/migrate/20210506070809_add_indexes_for_featured_images.rb +9 -0
- data/lib/generators/spotlight/install_generator.rb +5 -5
- data/lib/generators/spotlight/scaffold_resource_generator.rb +5 -13
- data/lib/generators/spotlight/templates/config/initializers/riiif.rb +7 -5
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +1 -1
- data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
- data/lib/migration/iiif.rb +3 -3
- data/lib/spotlight/engine.rb +26 -4
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/browse_controller_spec.rb +23 -6
- data/spec/controllers/spotlight/bulk_actions_controller_spec.rb +124 -0
- data/spec/controllers/spotlight/bulk_updates_controller_spec.rb +77 -0
- data/spec/controllers/spotlight/catalog_controller_spec.rb +15 -13
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1502 -136
- data/spec/factories/bulk_updates.rb +15 -0
- data/spec/factories/exhibits.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/job_trackers.rb +11 -0
- data/spec/factories/searches.rb +10 -0
- data/spec/factories/users.rb +27 -8
- data/spec/features/add_items_spec.rb +10 -5
- data/spec/features/browse_category_admin_spec.rb +36 -4
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/bulk_actions_spec.rb +72 -0
- data/spec/features/catalog_spec.rb +1 -0
- data/spec/features/exhibits/translation_editing_spec.rb +49 -0
- data/spec/features/home_page_spec.rb +4 -4
- data/spec/features/import_exhibit_spec.rb +5 -1
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +1 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +4 -4
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +27 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +2 -2
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
- data/spec/features/site_users_management_spec.rb +5 -5
- data/spec/fixtures/bulk-update-template.csv +57 -0
- data/spec/fixtures/updated-bulk-update-template-w-tags.csv +4 -0
- data/spec/fixtures/updated-bulk-update-template.csv +4 -0
- data/spec/helpers/spotlight/application_helper_spec.rb +5 -6
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +8 -15
- data/spec/helpers/spotlight/roles_helper_spec.rb +1 -1
- data/spec/i18n_spec.rb +1 -0
- data/spec/jobs/spotlight/add_tags_job_spec.rb +34 -0
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +4 -1
- data/spec/jobs/spotlight/change_visibility_job_spec.rb +30 -0
- data/spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb +78 -0
- data/spec/jobs/spotlight/reindex_exhibit_job_spec.rb +43 -0
- data/spec/jobs/spotlight/reindex_job_spec.rb +34 -60
- data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
- data/spec/lib/migration/iiif_spec.rb +1 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/spotlight/ability_spec.rb +27 -0
- data/spec/models/spotlight/background_job_progress_spec.rb +137 -0
- data/spec/models/spotlight/blacklight_configuration_spec.rb +22 -17
- data/spec/models/spotlight/browse_category_search_builder_spec.rb +49 -0
- data/spec/models/spotlight/exhibit_spec.rb +12 -58
- data/spec/models/spotlight/featured_image_spec.rb +13 -1
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/resource_spec.rb +89 -87
- data/spec/models/spotlight/resources/iiif_harvester_spec.rb +9 -10
- data/spec/models/spotlight/role_spec.rb +1 -1
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +1 -0
- data/spec/presenters/spotlight/iiif_manifest_presenter_spec.rb +1 -1
- data/spec/services/spotlight/bulk_updates_csv_template_service_spec.rb +26 -0
- data/spec/services/spotlight/etl/context_spec.rb +66 -0
- data/spec/services/spotlight/etl/executor_spec.rb +149 -0
- data/spec/services/spotlight/etl/pipeline_spec.rb +22 -0
- data/spec/services/spotlight/etl/solr_loader_spec.rb +76 -0
- data/spec/services/spotlight/etl/step_spec.rb +70 -0
- data/spec/services/spotlight/exhibit_import_export_service_spec.rb +48 -1
- data/spec/spec_helper.rb +3 -6
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +2 -0
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +2 -2
- data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +24 -19
- data/spec/views/spotlight/job_trackers/show.html.erb_spec.rb +65 -0
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -4
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +8 -4
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -2
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +8 -5
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +3 -2
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +9 -4
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +472 -287
- data/app/assets/images/blacklight/add_circle.svg +0 -1
- data/app/assets/images/blacklight/custom_fullscreen.svg +0 -1
- data/app/assets/images/blacklight/remove_circle.svg +0 -1
- data/app/assets/images/blacklight/resize_small.svg +0 -1
- data/app/models/concerns/spotlight/resources/open_graph.rb +0 -36
- data/app/models/spotlight/reindex_progress.rb +0 -78
- data/app/models/spotlight/reindexing_log_entry.rb +0 -42
- data/app/services/spotlight/resources/iiif_builder.rb +0 -19
- data/app/services/spotlight/solr_document_builder.rb +0 -77
- data/app/services/spotlight/upload_solr_document_builder.rb +0 -57
- data/spec/factories/reindexing_log_entries.rb +0 -54
- data/spec/models/spotlight/reindex_progress_spec.rb +0 -122
- data/spec/models/spotlight/reindexing_log_entry_spec.rb +0 -129
- data/spec/models/spotlight/resources/open_graph_spec.rb +0 -65
- data/spec/services/spotlight/solr_document_builder_spec.rb +0 -66
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::JobTrackersController, type: :controller do
|
4
|
+
routes { Spotlight::Engine.routes }
|
5
|
+
let(:job_tracker) { FactoryBot.create(:job_tracker, on: exhibit) }
|
6
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
|
+
|
8
|
+
describe 'when the user is not authorized' do
|
9
|
+
before do
|
10
|
+
sign_in FactoryBot.create(:exhibit_visitor)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe 'GET show' do
|
14
|
+
it 'denies access' do
|
15
|
+
get :show, params: { exhibit_id: exhibit, id: job_tracker }
|
16
|
+
expect(response).to redirect_to main_app.root_path
|
17
|
+
expect(flash[:alert]).to be_present
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe 'when signed in' do
|
23
|
+
let(:user) { FactoryBot.create(:exhibit_admin, exhibit: exhibit) }
|
24
|
+
|
25
|
+
before { sign_in user }
|
26
|
+
|
27
|
+
describe 'GET show' do
|
28
|
+
it 'assigns breadcrumbs' do
|
29
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
30
|
+
expect(controller).to receive(:add_breadcrumb).with('Dashboard', exhibit_dashboard_path(exhibit))
|
31
|
+
expect(controller).to receive(:add_breadcrumb).with('Job status', [exhibit, job_tracker])
|
32
|
+
get :show, params: { exhibit_id: exhibit, id: job_tracker }
|
33
|
+
expect(response).to be_successful
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
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
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
describe Spotlight::TagsController, type: :controller do
|
4
|
+
include ActiveJob::TestHelper
|
5
|
+
|
4
6
|
routes { Spotlight::Engine.routes }
|
5
7
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
6
8
|
|
@@ -43,7 +45,9 @@ describe Spotlight::TagsController, type: :controller do
|
|
43
45
|
|
44
46
|
it 'is successful' do
|
45
47
|
expect do
|
46
|
-
|
48
|
+
perform_enqueued_jobs do
|
49
|
+
delete :destroy, params: { exhibit_id: exhibit, id: tagging.tag }
|
50
|
+
end
|
47
51
|
end.to change { ActsAsTaggableOn::Tagging.count }.by(-1)
|
48
52
|
expect(response).to redirect_to exhibit_tags_path(exhibit)
|
49
53
|
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,136 +1,1502 @@
|
|
1
|
-
example_id
|
2
|
-
|
3
|
-
./spec/controllers/
|
4
|
-
./spec/controllers/
|
5
|
-
./spec/controllers/
|
6
|
-
./spec/controllers/spotlight/
|
7
|
-
./spec/controllers/spotlight/
|
8
|
-
./spec/controllers/spotlight/
|
9
|
-
./spec/controllers/spotlight/
|
10
|
-
./spec/controllers/spotlight/
|
11
|
-
./spec/controllers/spotlight/
|
12
|
-
./spec/controllers/spotlight/
|
13
|
-
./spec/controllers/spotlight/
|
14
|
-
./spec/controllers/spotlight/
|
15
|
-
./spec/controllers/spotlight/
|
16
|
-
./spec/controllers/spotlight/
|
17
|
-
./spec/controllers/spotlight/
|
18
|
-
./spec/controllers/spotlight/
|
19
|
-
./spec/controllers/spotlight/
|
20
|
-
./spec/controllers/spotlight/
|
21
|
-
./spec/controllers/spotlight/
|
22
|
-
./spec/controllers/spotlight/
|
23
|
-
./spec/controllers/spotlight/
|
24
|
-
./spec/controllers/spotlight/
|
25
|
-
./spec/controllers/spotlight/
|
26
|
-
./spec/controllers/spotlight/
|
27
|
-
./spec/controllers/spotlight/
|
28
|
-
./spec/controllers/spotlight/
|
29
|
-
./spec/controllers/spotlight/
|
30
|
-
./spec/controllers/spotlight/
|
31
|
-
./spec/controllers/spotlight/
|
32
|
-
./spec/controllers/spotlight/
|
33
|
-
./spec/controllers/spotlight/
|
34
|
-
./spec/controllers/spotlight/
|
35
|
-
./spec/controllers/spotlight/
|
36
|
-
./spec/controllers/spotlight/
|
37
|
-
./spec/controllers/spotlight/
|
38
|
-
./spec/controllers/spotlight/
|
39
|
-
./spec/controllers/spotlight/
|
40
|
-
./spec/controllers/spotlight/
|
41
|
-
./spec/controllers/spotlight/
|
42
|
-
./spec/controllers/spotlight/
|
43
|
-
./spec/controllers/spotlight/
|
44
|
-
./spec/controllers/spotlight/
|
45
|
-
./spec/controllers/spotlight/
|
46
|
-
./spec/controllers/spotlight/
|
47
|
-
./spec/controllers/spotlight/
|
48
|
-
./spec/controllers/spotlight/
|
49
|
-
./spec/controllers/spotlight/
|
50
|
-
./spec/controllers/spotlight/
|
51
|
-
./spec/controllers/spotlight/
|
52
|
-
./spec/controllers/spotlight/
|
53
|
-
./spec/controllers/spotlight/
|
54
|
-
./spec/controllers/spotlight/
|
55
|
-
./spec/controllers/spotlight/
|
56
|
-
./spec/controllers/spotlight/
|
57
|
-
./spec/controllers/spotlight/
|
58
|
-
./spec/controllers/spotlight/
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
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:
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:
|
67
|
-
./spec/controllers/spotlight/
|
68
|
-
./spec/controllers/spotlight/
|
69
|
-
./spec/controllers/spotlight/
|
70
|
-
./spec/controllers/spotlight/
|
71
|
-
./spec/controllers/spotlight/
|
72
|
-
./spec/controllers/spotlight/
|
73
|
-
./spec/controllers/spotlight/
|
74
|
-
./spec/controllers/spotlight/
|
75
|
-
./spec/controllers/spotlight/
|
76
|
-
./spec/
|
77
|
-
./spec/
|
78
|
-
./spec/
|
79
|
-
./spec/
|
80
|
-
./spec/
|
81
|
-
./spec/
|
82
|
-
./spec/
|
83
|
-
./spec/
|
84
|
-
./spec/
|
85
|
-
./spec/
|
86
|
-
./spec/
|
87
|
-
./spec/
|
88
|
-
./spec/
|
89
|
-
./spec/
|
90
|
-
./spec/
|
91
|
-
./spec/
|
92
|
-
./spec/
|
93
|
-
./spec/
|
94
|
-
./spec/
|
95
|
-
./spec/
|
96
|
-
./spec/
|
97
|
-
./spec/
|
98
|
-
./spec/
|
99
|
-
./spec/
|
100
|
-
./spec/
|
101
|
-
./spec/
|
102
|
-
./spec/
|
103
|
-
./spec/
|
104
|
-
./spec/
|
105
|
-
./spec/
|
106
|
-
./spec/
|
107
|
-
./spec/
|
108
|
-
./spec/
|
109
|
-
./spec/
|
110
|
-
./spec/
|
111
|
-
./spec/
|
112
|
-
./spec/
|
113
|
-
./spec/
|
114
|
-
./spec/
|
115
|
-
./spec/
|
116
|
-
./spec/
|
117
|
-
./spec/
|
118
|
-
./spec/
|
119
|
-
./spec/
|
120
|
-
./spec/
|
121
|
-
./spec/
|
122
|
-
./spec/
|
123
|
-
./spec/
|
124
|
-
./spec/
|
125
|
-
./spec/
|
126
|
-
./spec/
|
127
|
-
./spec/
|
128
|
-
./spec/
|
129
|
-
./spec/
|
130
|
-
./spec/
|
131
|
-
./spec/
|
132
|
-
./spec/
|
133
|
-
./spec/
|
134
|
-
./spec/
|
135
|
-
./spec/
|
136
|
-
./spec/
|
1
|
+
example_id | status | run_time |
|
2
|
+
----------------------------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.00381 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.2072 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.03749 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.1279 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.06872 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.16156 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.09035 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.10041 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.07246 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.07168 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.10861 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.09121 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.08825 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.09363 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.09879 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.1858 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.17267 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.08288 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.09255 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.08628 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.02139 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.01909 seconds |
|
25
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:3:1] | passed | 0.02328 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.10862 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.04711 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.04956 seconds |
|
29
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.07708 seconds |
|
30
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.03549 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.03864 seconds |
|
32
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.05219 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.05382 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.0565 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.0525 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.05788 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.05155 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.1013 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:2] | passed | 0.11131 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.07504 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.08075 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.08812 seconds |
|
43
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.07611 seconds |
|
44
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.06764 seconds |
|
45
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:1:1] | passed | 0.0495 seconds |
|
46
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:2:1] | passed | 0.04585 seconds |
|
47
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:3:1] | passed | 0.05431 seconds |
|
48
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:1:1] | passed | 0.16882 seconds |
|
49
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:1:2] | passed | 0.08716 seconds |
|
50
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:2:1] | passed | 0.08138 seconds |
|
51
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:2:2] | passed | 0.07804 seconds |
|
52
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:3:1] | passed | 0.0779 seconds |
|
53
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:3:2] | passed | 0.08157 seconds |
|
54
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:1:1:1] | passed | 0.05118 seconds |
|
55
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:1:2:1] | passed | 0.04651 seconds |
|
56
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:1:1] | passed | 0.05029 seconds |
|
57
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:2:1] | passed | 0.3276 seconds |
|
58
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:3:1] | passed | 0.06909 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.00138 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.00081 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.00174 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.04372 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.04345 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.07808 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.08176 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.08745 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.32192 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.13561 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.07731 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.09136 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.05957 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.0825 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.1217 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.59307 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.07034 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.05936 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.05259 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.08046 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.05069 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.0507 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.09953 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.10585 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.0814 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.14875 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.12222 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.11473 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:4] | passed | 0.1338 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.08115 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.0815 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.07814 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.03903 seconds |
|
92
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.03613 seconds |
|
93
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07527 seconds |
|
94
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.09346 seconds |
|
95
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.07834 seconds |
|
96
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.10116 seconds |
|
97
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.08336 seconds |
|
98
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.00135 seconds |
|
99
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.00159 seconds |
|
100
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.04181 seconds |
|
101
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.0982 seconds |
|
102
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.15654 seconds |
|
103
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.00089 seconds |
|
104
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.00097 seconds |
|
105
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.0014 seconds |
|
106
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.03869 seconds |
|
107
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.03868 seconds |
|
108
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.03817 seconds |
|
109
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:1] | passed | 0.05738 seconds |
|
110
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:2] | passed | 0.05966 seconds |
|
111
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.01373 seconds |
|
112
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.00306 seconds |
|
113
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.13808 seconds |
|
114
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.11712 seconds |
|
115
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.06652 seconds |
|
116
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.05498 seconds |
|
117
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.05606 seconds |
|
118
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.05249 seconds |
|
119
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.06362 seconds |
|
120
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.05841 seconds |
|
121
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.06141 seconds |
|
122
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.04698 seconds |
|
123
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.06248 seconds |
|
124
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.06179 seconds |
|
125
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.06727 seconds |
|
126
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.05569 seconds |
|
127
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.05528 seconds |
|
128
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.05719 seconds |
|
129
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.05248 seconds |
|
130
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.06696 seconds |
|
131
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.05752 seconds |
|
132
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.05879 seconds |
|
133
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.05767 seconds |
|
134
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.05225 seconds |
|
135
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.05299 seconds |
|
136
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:1:1] | passed | 0.06061 seconds |
|
137
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:2:1] | passed | 0.05628 seconds |
|
138
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.05157 seconds |
|
139
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.06152 seconds |
|
140
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.0531 seconds |
|
141
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.07439 seconds |
|
142
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.05451 seconds |
|
143
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.0628 seconds |
|
144
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.05949 seconds |
|
145
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.21744 seconds |
|
146
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.11283 seconds |
|
147
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1:1] | passed | 0.012 seconds |
|
148
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:2:1] | passed | 0.05098 seconds |
|
149
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.03973 seconds |
|
150
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.03881 seconds |
|
151
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.0403 seconds |
|
152
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.03936 seconds |
|
153
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.04107 seconds |
|
154
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.0187 seconds |
|
155
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.06477 seconds |
|
156
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.05204 seconds |
|
157
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.05924 seconds |
|
158
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.05314 seconds |
|
159
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.06295 seconds |
|
160
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.05227 seconds |
|
161
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.0711 seconds |
|
162
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.10613 seconds |
|
163
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.08885 seconds |
|
164
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.10022 seconds |
|
165
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.09337 seconds |
|
166
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.0773 seconds |
|
167
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.08014 seconds |
|
168
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:4:1] | passed | 0.09488 seconds |
|
169
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.07691 seconds |
|
170
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.09622 seconds |
|
171
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.08124 seconds |
|
172
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.07816 seconds |
|
173
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.08003 seconds |
|
174
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.06956 seconds |
|
175
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.07056 seconds |
|
176
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.09038 seconds |
|
177
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.09595 seconds |
|
178
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.0945 seconds |
|
179
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.08387 seconds |
|
180
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.08372 seconds |
|
181
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.10983 seconds |
|
182
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.08889 seconds |
|
183
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.08604 seconds |
|
184
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.09054 seconds |
|
185
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.08504 seconds |
|
186
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.02242 seconds |
|
187
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.01982 seconds |
|
188
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.03014 seconds |
|
189
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.10236 seconds |
|
190
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.062 seconds |
|
191
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.05861 seconds |
|
192
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.04144 seconds |
|
193
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.05445 seconds |
|
194
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.05339 seconds |
|
195
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:1:1] | passed | 0.05613 seconds |
|
196
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:2:1] | passed | 0.06034 seconds |
|
197
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:3:1] | passed | 0.05888 seconds |
|
198
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:1:1] | passed | 0.05948 seconds |
|
199
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:2:1] | passed | 0.06569 seconds |
|
200
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:3:1] | passed | 0.06074 seconds |
|
201
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:4:1] | passed | 0.07493 seconds |
|
202
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:5:1] | passed | 0.05879 seconds |
|
203
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.07435 seconds |
|
204
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.0864 seconds |
|
205
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.08814 seconds |
|
206
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.09186 seconds |
|
207
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.08765 seconds |
|
208
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.06862 seconds |
|
209
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.09879 seconds |
|
210
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.06205 seconds |
|
211
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.10695 seconds |
|
212
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.09895 seconds |
|
213
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.08005 seconds |
|
214
|
+
./spec/controllers/spotlight/job_trackers_controller_spec.rb[1:1:1:1] | passed | 0.1032 seconds |
|
215
|
+
./spec/controllers/spotlight/job_trackers_controller_spec.rb[1:2:1:1] | passed | 0.09475 seconds |
|
216
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.039 seconds |
|
217
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.07002 seconds |
|
218
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.05853 seconds |
|
219
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.06179 seconds |
|
220
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.04092 seconds |
|
221
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.05702 seconds |
|
222
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.05536 seconds |
|
223
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.04942 seconds |
|
224
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.03775 seconds |
|
225
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.03933 seconds |
|
226
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.05406 seconds |
|
227
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.0685 seconds |
|
228
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.07639 seconds |
|
229
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.086 seconds |
|
230
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.05288 seconds |
|
231
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.0402 seconds |
|
232
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.05191 seconds |
|
233
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.05172 seconds |
|
234
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.04965 seconds |
|
235
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.03867 seconds |
|
236
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.06899 seconds |
|
237
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.16426 seconds |
|
238
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.07966 seconds |
|
239
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:4] | passed | 0.0821 seconds |
|
240
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.04815 seconds |
|
241
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.03994 seconds |
|
242
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.03731 seconds |
|
243
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.03763 seconds |
|
244
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.05849 seconds |
|
245
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.05264 seconds |
|
246
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.05388 seconds |
|
247
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.05455 seconds |
|
248
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.05357 seconds |
|
249
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.05174 seconds |
|
250
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.05634 seconds |
|
251
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.05992 seconds |
|
252
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.16003 seconds |
|
253
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.0585 seconds |
|
254
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.05421 seconds |
|
255
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.06229 seconds |
|
256
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.05556 seconds |
|
257
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.05391 seconds |
|
258
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.04924 seconds |
|
259
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.03852 seconds |
|
260
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.03696 seconds |
|
261
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.06421 seconds |
|
262
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.0592 seconds |
|
263
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.0644 seconds |
|
264
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.06571 seconds |
|
265
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.06359 seconds |
|
266
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.07499 seconds |
|
267
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.0508 seconds |
|
268
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.0494 seconds |
|
269
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.06048 seconds |
|
270
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.06498 seconds |
|
271
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.07842 seconds |
|
272
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:3] | passed | 0.15084 seconds |
|
273
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.12992 seconds |
|
274
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.11078 seconds |
|
275
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.06575 seconds |
|
276
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.09301 seconds |
|
277
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.06498 seconds |
|
278
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.0673 seconds |
|
279
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.09157 seconds |
|
280
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.07598 seconds |
|
281
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.01961 seconds |
|
282
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.02081 seconds |
|
283
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.10216 seconds |
|
284
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.0579 seconds |
|
285
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.11409 seconds |
|
286
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.08918 seconds |
|
287
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.04816 seconds |
|
288
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.0829 seconds |
|
289
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.07668 seconds |
|
290
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5] | passed | 0.08174 seconds |
|
291
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:6:1] | passed | 0.08112 seconds |
|
292
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.05249 seconds |
|
293
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.07793 seconds |
|
294
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.06499 seconds |
|
295
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.12145 seconds |
|
296
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.03954 seconds |
|
297
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.05847 seconds |
|
298
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:2] | passed | 0.05088 seconds |
|
299
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.04017 seconds |
|
300
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.11562 seconds |
|
301
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.12944 seconds |
|
302
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:1] | passed | 0.09113 seconds |
|
303
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:2] | passed | 0.11052 seconds |
|
304
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:4:1] | passed | 0.11142 seconds |
|
305
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.20179 seconds |
|
306
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.15114 seconds |
|
307
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.09829 seconds |
|
308
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.11064 seconds |
|
309
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.06292 seconds |
|
310
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 7.18 seconds |
|
311
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.6657 seconds |
|
312
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.49813 seconds |
|
313
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.04933 seconds |
|
314
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 1.96 seconds |
|
315
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.32382 seconds |
|
316
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3:1] | passed | 2.65 seconds |
|
317
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:4] | passed | 0.87598 seconds |
|
318
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.49134 seconds |
|
319
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.44223 seconds |
|
320
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.35011 seconds |
|
321
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.11038 seconds |
|
322
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 7.21 seconds |
|
323
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.30893 seconds |
|
324
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.10614 seconds |
|
325
|
+
./spec/features/add_items_spec.rb[1:1:5] | passed | 0.1024 seconds |
|
326
|
+
./spec/features/add_items_spec.rb[1:1:6:1] | passed | 0.12445 seconds |
|
327
|
+
./spec/features/add_items_spec.rb[1:2:1] | failed | 9.47 seconds |
|
328
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 1.51 seconds |
|
329
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 2.28 seconds |
|
330
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.48 seconds |
|
331
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.85543 seconds |
|
332
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.18797 seconds |
|
333
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 0.93496 seconds |
|
334
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.83923 seconds |
|
335
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.17618 seconds |
|
336
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2:1] | passed | 0.38249 seconds |
|
337
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3:1] | passed | 0.13028 seconds |
|
338
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.5101 seconds |
|
339
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.26509 seconds |
|
340
|
+
./spec/features/browse_category_admin_spec.rb[1:3:6] | passed | 0.26714 seconds |
|
341
|
+
./spec/features/browse_category_admin_spec.rb[1:3:7] | passed | 0.28419 seconds |
|
342
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.07956 seconds |
|
343
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:1] | passed | 0.17608 seconds |
|
344
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:2] | passed | 0.24272 seconds |
|
345
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:3] | passed | 0.49839 seconds |
|
346
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.15498 seconds |
|
347
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.15653 seconds |
|
348
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.14183 seconds |
|
349
|
+
./spec/features/browse_category_spec.rb[1:1:1:4:1] | passed | 0.14439 seconds |
|
350
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.16524 seconds |
|
351
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.15195 seconds |
|
352
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.15816 seconds |
|
353
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.42993 seconds |
|
354
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.16391 seconds |
|
355
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.16934 seconds |
|
356
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.36434 seconds |
|
357
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.15622 seconds |
|
358
|
+
./spec/features/bulk_actions_spec.rb[1:1] | passed | 1.88 seconds |
|
359
|
+
./spec/features/bulk_actions_spec.rb[1:2] | passed | 1.62 seconds |
|
360
|
+
./spec/features/bulk_actions_spec.rb[1:3] | passed | 1.77 seconds |
|
361
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.5256 seconds |
|
362
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.11868 seconds |
|
363
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.17144 seconds |
|
364
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.27688 seconds |
|
365
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.38391 seconds |
|
366
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.14226 seconds |
|
367
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.08259 seconds |
|
368
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.49669 seconds |
|
369
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.66588 seconds |
|
370
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.53067 seconds |
|
371
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.37626 seconds |
|
372
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.2057 seconds |
|
373
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.17603 seconds |
|
374
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.30811 seconds |
|
375
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.203 seconds |
|
376
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.14242 seconds |
|
377
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.38443 seconds |
|
378
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.31906 seconds |
|
379
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.15538 seconds |
|
380
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.30351 seconds |
|
381
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.44952 seconds |
|
382
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.34864 seconds |
|
383
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.31998 seconds |
|
384
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.08524 seconds |
|
385
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.5129 seconds |
|
386
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 0.85342 seconds |
|
387
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.27972 seconds |
|
388
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.12604 seconds |
|
389
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.28964 seconds |
|
390
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.37 seconds |
|
391
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 0.41599 seconds |
|
392
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 1.08 seconds |
|
393
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.69066 seconds |
|
394
|
+
./spec/features/exhibits/administration_spec.rb[1:1:8] | passed | 0.71861 seconds |
|
395
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.93293 seconds |
|
396
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.34012 seconds |
|
397
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.54645 seconds |
|
398
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:4] | passed | 0.50156 seconds |
|
399
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:1] | passed | 0.67297 seconds |
|
400
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:2] | passed | 0.21452 seconds |
|
401
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.39851 seconds |
|
402
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 1.09 seconds |
|
403
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.14731 seconds |
|
404
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.58178 seconds |
|
405
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.50544 seconds |
|
406
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.9733 seconds |
|
407
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 0.41378 seconds |
|
408
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 0.48129 seconds |
|
409
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 0.79573 seconds |
|
410
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 0.85491 seconds |
|
411
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 0.64798 seconds |
|
412
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 0.56911 seconds |
|
413
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 0.58035 seconds |
|
414
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 0.5567 seconds |
|
415
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 0.54283 seconds |
|
416
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 1.16 seconds |
|
417
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 0.9905 seconds |
|
418
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 0.43991 seconds |
|
419
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 0.15946 seconds |
|
420
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 2.32 seconds |
|
421
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 0.37346 seconds |
|
422
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 1.2 seconds |
|
423
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 0.47485 seconds |
|
424
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 0.17192 seconds |
|
425
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 1.09 seconds |
|
426
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 0.18063 seconds |
|
427
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 1.91 seconds |
|
428
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 0.18615 seconds |
|
429
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 1.32 seconds |
|
430
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 0.18866 seconds |
|
431
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 0.4301 seconds |
|
432
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | passed | 1 second |
|
433
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 0.366 seconds |
|
434
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:2] | passed | 0.49428 seconds |
|
435
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:3] | passed | 0.97354 seconds |
|
436
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:6:1] | passed | 0.35883 seconds |
|
437
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:7:1] | passed | 0.44675 seconds |
|
438
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.16461 seconds |
|
439
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.16282 seconds |
|
440
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.22644 seconds |
|
441
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.11238 seconds |
|
442
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.13667 seconds |
|
443
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.11958 seconds |
|
444
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.11587 seconds |
|
445
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.31491 seconds |
|
446
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.29107 seconds |
|
447
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.18249 seconds |
|
448
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.58 seconds |
|
449
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.27957 seconds |
|
450
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 0.66412 seconds |
|
451
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.40933 seconds |
|
452
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.89087 seconds |
|
453
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.32754 seconds |
|
454
|
+
./spec/features/home_page_spec.rb[1:6] | passed | 0.19842 seconds |
|
455
|
+
./spec/features/home_page_spec.rb[1:7:1:1] | passed | 0.4354 seconds |
|
456
|
+
./spec/features/home_page_spec.rb[1:8:1] | passed | 0.10947 seconds |
|
457
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.18 seconds |
|
458
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.51 seconds |
|
459
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.21967 seconds |
|
460
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.2131 seconds |
|
461
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.55253 seconds |
|
462
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.18 seconds |
|
463
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 1.15 seconds |
|
464
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.63 seconds |
|
465
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:1] | passed | 1.31 seconds |
|
466
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:2] | passed | 1.18 seconds |
|
467
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:3] | passed | 1.03 seconds |
|
468
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 2.68 seconds |
|
469
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.73 seconds |
|
470
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 3.18 seconds |
|
471
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 2.81 seconds |
|
472
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.68 seconds |
|
473
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 2.73 seconds |
|
474
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 0.98443 seconds |
|
475
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | failed | 11.34 seconds |
|
476
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 0.98699 seconds |
|
477
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.32 seconds |
|
478
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.68 seconds |
|
479
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 1.98 seconds |
|
480
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.53 seconds |
|
481
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.77 seconds |
|
482
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | failed | 1.35 seconds |
|
483
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.78761 seconds |
|
484
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.37 seconds |
|
485
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.09 seconds |
|
486
|
+
./spec/features/javascript/blocks/solr_documents_carousel_block_spec.rb[1:1] | passed | 1.27 seconds |
|
487
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 1.41 seconds |
|
488
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 0.93556 seconds |
|
489
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:3] | passed | 1.21 seconds |
|
490
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:1] | passed | 0.9903 seconds |
|
491
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:2] | passed | 0.71988 seconds |
|
492
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.55 seconds |
|
493
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:2] | pending | 0.05245 seconds |
|
494
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.02 seconds |
|
495
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.15 seconds |
|
496
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 0.90414 seconds |
|
497
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.63508 seconds |
|
498
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.59656 seconds |
|
499
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 1.48 seconds |
|
500
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 0.88846 seconds |
|
501
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.46419 seconds |
|
502
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 0.77301 seconds |
|
503
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.50774 seconds |
|
504
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.504 seconds |
|
505
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 0.78305 seconds |
|
506
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.48702 seconds |
|
507
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.51505 seconds |
|
508
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.54 seconds |
|
509
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.79 seconds |
|
510
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.02 seconds |
|
511
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 0.99843 seconds |
|
512
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 0.88295 seconds |
|
513
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 0.75336 seconds |
|
514
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 0.97523 seconds |
|
515
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 0.90876 seconds |
|
516
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | failed | 22.64 seconds |
|
517
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 0.81459 seconds |
|
518
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.88808 seconds |
|
519
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.72159 seconds |
|
520
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.05 seconds |
|
521
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.17056 seconds |
|
522
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.09683 seconds |
|
523
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.10044 seconds |
|
524
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.14322 seconds |
|
525
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.2127 seconds |
|
526
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.17877 seconds |
|
527
|
+
./spec/features/main_navigation_spec.rb[1:7:1] | passed | 0.47722 seconds |
|
528
|
+
./spec/features/main_navigation_spec.rb[1:7:2:1] | passed | 0.47334 seconds |
|
529
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.17049 seconds |
|
530
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.25227 seconds |
|
531
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.27781 seconds |
|
532
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 0.8973 seconds |
|
533
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 0.70527 seconds |
|
534
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.20179 seconds |
|
535
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.15953 seconds |
|
536
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.07735 seconds |
|
537
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.07506 seconds |
|
538
|
+
./spec/features/site_users_management_spec.rb[1:1] | passed | 0.44696 seconds |
|
539
|
+
./spec/features/site_users_management_spec.rb[1:2:1] | passed | 0.42 seconds |
|
540
|
+
./spec/features/site_users_management_spec.rb[1:3] | passed | 0.65075 seconds |
|
541
|
+
./spec/features/site_users_management_spec.rb[1:4] | passed | 0.81108 seconds |
|
542
|
+
./spec/features/site_users_management_spec.rb[1:5] | passed | 0.60195 seconds |
|
543
|
+
./spec/features/site_users_management_spec.rb[1:6] | passed | 0.40974 seconds |
|
544
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.65 seconds |
|
545
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.32051 seconds |
|
546
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.07905 seconds |
|
547
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.00576 seconds |
|
548
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.00361 seconds |
|
549
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.00336 seconds |
|
550
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.00326 seconds |
|
551
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.00386 seconds |
|
552
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.04638 seconds |
|
553
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.00245 seconds |
|
554
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.00313 seconds |
|
555
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.04095 seconds |
|
556
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.04218 seconds |
|
557
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.00264 seconds |
|
558
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.0025 seconds |
|
559
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.00732 seconds |
|
560
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.00316 seconds |
|
561
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.00339 seconds |
|
562
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.00318 seconds |
|
563
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.00248 seconds |
|
564
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.00267 seconds |
|
565
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.00232 seconds |
|
566
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.0027 seconds |
|
567
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.04464 seconds |
|
568
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.04348 seconds |
|
569
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.04352 seconds |
|
570
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.03934 seconds |
|
571
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.04174 seconds |
|
572
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.03872 seconds |
|
573
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.08438 seconds |
|
574
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.04508 seconds |
|
575
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.04516 seconds |
|
576
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.04446 seconds |
|
577
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.04591 seconds |
|
578
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.04288 seconds |
|
579
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.00211 seconds |
|
580
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.04556 seconds |
|
581
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.00247 seconds |
|
582
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.04217 seconds |
|
583
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.00209 seconds |
|
584
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:1] | passed | 0.00319 seconds |
|
585
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:2] | passed | 0.00256 seconds |
|
586
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:3] | passed | 0.0023 seconds |
|
587
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:4] | passed | 0.0025 seconds |
|
588
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.04738 seconds |
|
589
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.12511 seconds |
|
590
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.11862 seconds |
|
591
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.11675 seconds |
|
592
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.00192 seconds |
|
593
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.00213 seconds |
|
594
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.00196 seconds |
|
595
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.06647 seconds |
|
596
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.03764 seconds |
|
597
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.04002 seconds |
|
598
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.00247 seconds |
|
599
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.03923 seconds |
|
600
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.00358 seconds |
|
601
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.04105 seconds |
|
602
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.04295 seconds |
|
603
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.04357 seconds |
|
604
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:1:1] | passed | 0.0427 seconds |
|
605
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:2:1] | passed | 0.00471 seconds |
|
606
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:1:1] | passed | 0.04205 seconds |
|
607
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:2:1] | passed | 0.04212 seconds |
|
608
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:1:1] | passed | 0.00432 seconds |
|
609
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:2:1] | passed | 0.00456 seconds |
|
610
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.04135 seconds |
|
611
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.00217 seconds |
|
612
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.00244 seconds |
|
613
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.00287 seconds |
|
614
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.05023 seconds |
|
615
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.04876 seconds |
|
616
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:3] | passed | 0.05002 seconds |
|
617
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.07742 seconds |
|
618
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.31799 seconds |
|
619
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:1] | passed | 0.06081 seconds |
|
620
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:2] | passed | 0.05574 seconds |
|
621
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:3] | passed | 0.05124 seconds |
|
622
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:1] | passed | 0.05156 seconds |
|
623
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:2] | passed | 0.05275 seconds |
|
624
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:3] | passed | 0.05192 seconds |
|
625
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1] | passed | 0.05366 seconds |
|
626
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2] | passed | 0.05221 seconds |
|
627
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:3] | passed | 0.05597 seconds |
|
628
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1:1] | passed | 0.05057 seconds |
|
629
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:2:1] | passed | 0.04865 seconds |
|
630
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:6:1] | passed | 0.05006 seconds |
|
631
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.0044 seconds |
|
632
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.0079 seconds |
|
633
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.00264 seconds |
|
634
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.00183 seconds |
|
635
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.0038 seconds |
|
636
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.00288 seconds |
|
637
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:3] | passed | 0.00293 seconds |
|
638
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.00215 seconds |
|
639
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.0023 seconds |
|
640
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.00374 seconds |
|
641
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.00388 seconds |
|
642
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.05185 seconds |
|
643
|
+
./spec/i18n_spec.rb[1:1] | pending | 1.82 seconds |
|
644
|
+
./spec/i18n_spec.rb[1:2] | passed | 2.11 seconds |
|
645
|
+
./spec/i18n_spec.rb[1:3] | passed | 0.73607 seconds |
|
646
|
+
./spec/jobs/spotlight/add_tags_job_spec.rb[1:1] | passed | 7.22 seconds |
|
647
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.04584 seconds |
|
648
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.10453 seconds |
|
649
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:3:1] | passed | 0.26735 seconds |
|
650
|
+
./spec/jobs/spotlight/change_visibility_job_spec.rb[1:1] | passed | 2.86 seconds |
|
651
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00146 seconds |
|
652
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:1:1] | passed | 0.2189 seconds |
|
653
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:1:2:1] | passed | 0.08658 seconds |
|
654
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:2:1] | passed | 0.40446 seconds |
|
655
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:2:2:1] | passed | 0.49212 seconds |
|
656
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:1:1] | passed | 0.05834 seconds |
|
657
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:2:1] | passed | 0.05999 seconds |
|
658
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:3:1] | passed | 0.06522 seconds |
|
659
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:4:1] | passed | 0.05884 seconds |
|
660
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.05204 seconds |
|
661
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2] | passed | 0.05567 seconds |
|
662
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.0412 seconds |
|
663
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:2] | passed | 0.0452 seconds |
|
664
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:3] | passed | 0.07504 seconds |
|
665
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:3:1] | passed | 0.05442 seconds |
|
666
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:3:2] | passed | 0.05035 seconds |
|
667
|
+
./spec/jobs/spotlight/remove_tags_job_spec.rb[1:1] | passed | 8.35 seconds |
|
668
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.05471 seconds |
|
669
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.0481 seconds |
|
670
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.06384 seconds |
|
671
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.05733 seconds |
|
672
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.06612 seconds |
|
673
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.05466 seconds |
|
674
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.062 seconds |
|
675
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.06013 seconds |
|
676
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.01122 seconds |
|
677
|
+
./spec/lib/migration/page_language_spec.rb[1:1:1] | passed | 0.04879 seconds |
|
678
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.00092 seconds |
|
679
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.00076 seconds |
|
680
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.00115 seconds |
|
681
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.00077 seconds |
|
682
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.00077 seconds |
|
683
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.0027 seconds |
|
684
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.0394 seconds |
|
685
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.00107 seconds |
|
686
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.00091 seconds |
|
687
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.00063 seconds |
|
688
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.03754 seconds |
|
689
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.00061 seconds |
|
690
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.00093 seconds |
|
691
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.00047 seconds |
|
692
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.0005 seconds |
|
693
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:3:1] | passed | 0.00051 seconds |
|
694
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:1] | passed | 0.0005 seconds |
|
695
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:2] | passed | 0.00095 seconds |
|
696
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.01047 seconds |
|
697
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.00239 seconds |
|
698
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.00174 seconds |
|
699
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.00197 seconds |
|
700
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.002 seconds |
|
701
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:6:1] | passed | 0.00387 seconds |
|
702
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.04348 seconds |
|
703
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.0434 seconds |
|
704
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.04515 seconds |
|
705
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.06321 seconds |
|
706
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:1:1] | passed | 0.05947 seconds |
|
707
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:2:1] | passed | 0.0538 seconds |
|
708
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:1] | passed | 0.05565 seconds |
|
709
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:2] | passed | 0.05507 seconds |
|
710
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.04225 seconds |
|
711
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.04082 seconds |
|
712
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.04326 seconds |
|
713
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.04235 seconds |
|
714
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.0417 seconds |
|
715
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.04487 seconds |
|
716
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.04351 seconds |
|
717
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:1] | passed | 0.05745 seconds |
|
718
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:2] | passed | 0.04457 seconds |
|
719
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:3] | passed | 0.04356 seconds |
|
720
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:1] | passed | 0.04301 seconds |
|
721
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:2] | passed | 0.04353 seconds |
|
722
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:3] | passed | 0.04334 seconds |
|
723
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00066 seconds |
|
724
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00072 seconds |
|
725
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.00097 seconds |
|
726
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00072 seconds |
|
727
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00055 seconds |
|
728
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00091 seconds |
|
729
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.00102 seconds |
|
730
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.04004 seconds |
|
731
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.0373 seconds |
|
732
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.05196 seconds |
|
733
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.00344 seconds |
|
734
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.00558 seconds |
|
735
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.00364 seconds |
|
736
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.00626 seconds |
|
737
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.03874 seconds |
|
738
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.07321 seconds |
|
739
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.03706 seconds |
|
740
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.05101 seconds |
|
741
|
+
./spec/models/solr_document_spec.rb[1:10:3] | passed | 0.04678 seconds |
|
742
|
+
./spec/models/solr_document_spec.rb[1:10:4] | passed | 0.04774 seconds |
|
743
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.05612 seconds |
|
744
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.07577 seconds |
|
745
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.06515 seconds |
|
746
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.05944 seconds |
|
747
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.03887 seconds |
|
748
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.05118 seconds |
|
749
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.03957 seconds |
|
750
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.04257 seconds |
|
751
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.04028 seconds |
|
752
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00077 seconds |
|
753
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.00066 seconds |
|
754
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.00066 seconds |
|
755
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.00115 seconds |
|
756
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.00064 seconds |
|
757
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.00178 seconds |
|
758
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.00096 seconds |
|
759
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.03975 seconds |
|
760
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.04306 seconds |
|
761
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.04779 seconds |
|
762
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.04345 seconds |
|
763
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.05126 seconds |
|
764
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.04392 seconds |
|
765
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.04319 seconds |
|
766
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.05202 seconds |
|
767
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.04091 seconds |
|
768
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.01316 seconds |
|
769
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.04923 seconds |
|
770
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.05137 seconds |
|
771
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.05369 seconds |
|
772
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.0503 seconds |
|
773
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.04825 seconds |
|
774
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.0469 seconds |
|
775
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.05026 seconds |
|
776
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.04628 seconds |
|
777
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.06001 seconds |
|
778
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.04774 seconds |
|
779
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.04839 seconds |
|
780
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.04652 seconds |
|
781
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.04878 seconds |
|
782
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.04673 seconds |
|
783
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.0485 seconds |
|
784
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.05602 seconds |
|
785
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.0567 seconds |
|
786
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.04703 seconds |
|
787
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.04758 seconds |
|
788
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.05483 seconds |
|
789
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.05534 seconds |
|
790
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.04734 seconds |
|
791
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.04767 seconds |
|
792
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.04866 seconds |
|
793
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.04788 seconds |
|
794
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.04708 seconds |
|
795
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.04667 seconds |
|
796
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.04771 seconds |
|
797
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.05891 seconds |
|
798
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.04908 seconds |
|
799
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.04804 seconds |
|
800
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.05214 seconds |
|
801
|
+
./spec/models/spotlight/ability_spec.rb[1:4:23] | passed | 0.0479 seconds |
|
802
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:1] | passed | 0.05154 seconds |
|
803
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:2] | passed | 0.05032 seconds |
|
804
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:3] | passed | 0.06002 seconds |
|
805
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:4] | passed | 0.05518 seconds |
|
806
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:5] | passed | 0.06372 seconds |
|
807
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:6] | passed | 0.0538 seconds |
|
808
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:7] | passed | 0.05042 seconds |
|
809
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:8] | passed | 0.05889 seconds |
|
810
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:9] | passed | 0.04846 seconds |
|
811
|
+
./spec/models/spotlight/ability_spec.rb[1:5:2:1] | passed | 0.04802 seconds |
|
812
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.0009 seconds |
|
813
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.00088 seconds |
|
814
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.04048 seconds |
|
815
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.04346 seconds |
|
816
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.04386 seconds |
|
817
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.04235 seconds |
|
818
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.05632 seconds |
|
819
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.045 seconds |
|
820
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.04707 seconds |
|
821
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.04483 seconds |
|
822
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:2:1] | passed | 0.00146 seconds |
|
823
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:1:1] | passed | 0.0488 seconds |
|
824
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:2:1] | passed | 0.04677 seconds |
|
825
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:3:1] | passed | 0.04514 seconds |
|
826
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:4:1] | passed | 0.06721 seconds |
|
827
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:4:2] | passed | 0.0726 seconds |
|
828
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:5:1] | passed | 0.04603 seconds |
|
829
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:6:1] | passed | 0.05122 seconds |
|
830
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:7:1] | passed | 0.04843 seconds |
|
831
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.03971 seconds |
|
832
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.04025 seconds |
|
833
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.04309 seconds |
|
834
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.03671 seconds |
|
835
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.03646 seconds |
|
836
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.04253 seconds |
|
837
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.04094 seconds |
|
838
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.04002 seconds |
|
839
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.05702 seconds |
|
840
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.04027 seconds |
|
841
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.04173 seconds |
|
842
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:3] | passed | 0.04441 seconds |
|
843
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.04609 seconds |
|
844
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.03679 seconds |
|
845
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.04097 seconds |
|
846
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.04237 seconds |
|
847
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.03984 seconds |
|
848
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.03878 seconds |
|
849
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.04138 seconds |
|
850
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.048 seconds |
|
851
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.04109 seconds |
|
852
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.04019 seconds |
|
853
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.04252 seconds |
|
854
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.04403 seconds |
|
855
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.04578 seconds |
|
856
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.04259 seconds |
|
857
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.04016 seconds |
|
858
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.04153 seconds |
|
859
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.04209 seconds |
|
860
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.03922 seconds |
|
861
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.06038 seconds |
|
862
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.04233 seconds |
|
863
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.04186 seconds |
|
864
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.03971 seconds |
|
865
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.04273 seconds |
|
866
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.04766 seconds |
|
867
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.04658 seconds |
|
868
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.04403 seconds |
|
869
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.04228 seconds |
|
870
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.04346 seconds |
|
871
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.04049 seconds |
|
872
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.03805 seconds |
|
873
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.038 seconds |
|
874
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.04095 seconds |
|
875
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.05619 seconds |
|
876
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.04131 seconds |
|
877
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:6:1] | passed | 0.04191 seconds |
|
878
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.03782 seconds |
|
879
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.0399 seconds |
|
880
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.04034 seconds |
|
881
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.04047 seconds |
|
882
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.0428 seconds |
|
883
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.03879 seconds |
|
884
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.04213 seconds |
|
885
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:3] | passed | 0.04437 seconds |
|
886
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:4] | passed | 0.04351 seconds |
|
887
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.04144 seconds |
|
888
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.04296 seconds |
|
889
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.04344 seconds |
|
890
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.04553 seconds |
|
891
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.25728 seconds |
|
892
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:2] | passed | 0.16679 seconds |
|
893
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.04263 seconds |
|
894
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1] | passed | 0.04238 seconds |
|
895
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.04075 seconds |
|
896
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:1] | passed | 0.04615 seconds |
|
897
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:2] | passed | 0.04776 seconds |
|
898
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:3] | passed | 0.04535 seconds |
|
899
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:1] | passed | 0.03958 seconds |
|
900
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:2] | passed | 0.03788 seconds |
|
901
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:1] | passed | 0.03851 seconds |
|
902
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:2] | passed | 0.04101 seconds |
|
903
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:3] | passed | 0.03878 seconds |
|
904
|
+
./spec/models/spotlight/browse_category_search_builder_spec.rb[1:1:1] | passed | 0.05972 seconds |
|
905
|
+
./spec/models/spotlight/browse_category_search_builder_spec.rb[1:1:2:1] | passed | 0.0569 seconds |
|
906
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.00135 seconds |
|
907
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.00141 seconds |
|
908
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.00101 seconds |
|
909
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.00501 seconds |
|
910
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.01369 seconds |
|
911
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.00334 seconds |
|
912
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.00242 seconds |
|
913
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:3:1] | passed | 0.00361 seconds |
|
914
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.00283 seconds |
|
915
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2:1] | passed | 0.00382 seconds |
|
916
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.00504 seconds |
|
917
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.00534 seconds |
|
918
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:1] | passed | 0.00093 seconds |
|
919
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:2] | passed | 0.00053 seconds |
|
920
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:3] | passed | 0.0005 seconds |
|
921
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:4] | passed | 0.00051 seconds |
|
922
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00064 seconds |
|
923
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.03919 seconds |
|
924
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.04163 seconds |
|
925
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.03768 seconds |
|
926
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.04129 seconds |
|
927
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.00147 seconds |
|
928
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.0404 seconds |
|
929
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.0401 seconds |
|
930
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.00085 seconds |
|
931
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.04538 seconds |
|
932
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.00422 seconds |
|
933
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.00403 seconds |
|
934
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.00462 seconds |
|
935
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.00461 seconds |
|
936
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.04154 seconds |
|
937
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.06009 seconds |
|
938
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.03906 seconds |
|
939
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.04629 seconds |
|
940
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.04524 seconds |
|
941
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.04668 seconds |
|
942
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.04594 seconds |
|
943
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.04757 seconds |
|
944
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.05357 seconds |
|
945
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.04048 seconds |
|
946
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:1:1:1] | passed | 0.00116 seconds |
|
947
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:1:1:1] | passed | 0.03852 seconds |
|
948
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:2:1:1] | passed | 0.03621 seconds |
|
949
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:1:1:1] | passed | 0.00078 seconds |
|
950
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:2:1:1] | passed | 0.05191 seconds |
|
951
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:1] | passed | 0.04058 seconds |
|
952
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:2] | passed | 0.10519 seconds |
|
953
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.00647 seconds |
|
954
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.0073 seconds |
|
955
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.04337 seconds |
|
956
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4] | passed | 0.02031 seconds |
|
957
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.0149 seconds |
|
958
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:2] | passed | 0.03705 seconds |
|
959
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.00685 seconds |
|
960
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7] | passed | 0.00581 seconds |
|
961
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.03495 seconds |
|
962
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.03635 seconds |
|
963
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.042 seconds |
|
964
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.03514 seconds |
|
965
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.00773 seconds |
|
966
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.07078 seconds |
|
967
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.05668 seconds |
|
968
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:2] | passed | 0.06004 seconds |
|
969
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.00574 seconds |
|
970
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.00635 seconds |
|
971
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.05265 seconds |
|
972
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:2] | passed | 0.04031 seconds |
|
973
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.05424 seconds |
|
974
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.03774 seconds |
|
975
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.03985 seconds |
|
976
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:3:1] | passed | 0.04096 seconds |
|
977
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.03765 seconds |
|
978
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.03727 seconds |
|
979
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.03806 seconds |
|
980
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.00712 seconds |
|
981
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:2] | passed | 0.00798 seconds |
|
982
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:3:1] | passed | 0.00814 seconds |
|
983
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:4:1] | passed | 0.0071 seconds |
|
984
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:1:1] | passed | 0.04578 seconds |
|
985
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:2:1] | passed | 0.00664 seconds |
|
986
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.00615 seconds |
|
987
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22] | passed | 0.00589 seconds |
|
988
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:1] | passed | 0.04358 seconds |
|
989
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:2] | passed | 0.0451 seconds |
|
990
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:3] | passed | 0.04451 seconds |
|
991
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:4] | passed | 0.04276 seconds |
|
992
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.00078 seconds |
|
993
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.06076 seconds |
|
994
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.06837 seconds |
|
995
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.07962 seconds |
|
996
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.06951 seconds |
|
997
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.00103 seconds |
|
998
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.04128 seconds |
|
999
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.04074 seconds |
|
1000
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.0008 seconds |
|
1001
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.00066 seconds |
|
1002
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.05814 seconds |
|
1003
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.06073 seconds |
|
1004
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.0646 seconds |
|
1005
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1] | passed | 0.79698 seconds |
|
1006
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | unknown | |
|
1007
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1:1] | unknown | |
|
1008
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1:2] | unknown | |
|
1009
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1:3:1] | unknown | |
|
1010
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2:1] | unknown | |
|
1011
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2:2] | unknown | |
|
1012
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:1] | passed | 0.00095 seconds |
|
1013
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:2] | passed | 0.00084 seconds |
|
1014
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:3] | unknown | |
|
1015
|
+
./spec/models/spotlight/featured_image_spec.rb[1:5:1] | unknown | |
|
1016
|
+
./spec/models/spotlight/featured_image_spec.rb[1:5:2] | unknown | |
|
1017
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.04225 seconds |
|
1018
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.04504 seconds |
|
1019
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3:1] | passed | 0.04166 seconds |
|
1020
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.00095 seconds |
|
1021
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00057 seconds |
|
1022
|
+
./spec/models/spotlight/group_spec.rb[1:1:1] | passed | 0.22556 seconds |
|
1023
|
+
./spec/models/spotlight/group_spec.rb[1:1:2] | passed | 0.23488 seconds |
|
1024
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.00097 seconds |
|
1025
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.0007 seconds |
|
1026
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.04085 seconds |
|
1027
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.04314 seconds |
|
1028
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.04183 seconds |
|
1029
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.04445 seconds |
|
1030
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.04186 seconds |
|
1031
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.00066 seconds |
|
1032
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.00052 seconds |
|
1033
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.05353 seconds |
|
1034
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.04391 seconds |
|
1035
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.03704 seconds |
|
1036
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.03948 seconds |
|
1037
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.00106 seconds |
|
1038
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.00097 seconds |
|
1039
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00081 seconds |
|
1040
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.00078 seconds |
|
1041
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.00106 seconds |
|
1042
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:1:1] | passed | 0.0637 seconds |
|
1043
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:1] | passed | 0.05262 seconds |
|
1044
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:2] | passed | 0.05196 seconds |
|
1045
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.04628 seconds |
|
1046
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.06153 seconds |
|
1047
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.04758 seconds |
|
1048
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.04601 seconds |
|
1049
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.04809 seconds |
|
1050
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.0477 seconds |
|
1051
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.05173 seconds |
|
1052
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.09458 seconds |
|
1053
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.09486 seconds |
|
1054
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.09384 seconds |
|
1055
|
+
./spec/models/spotlight/page_spec.rb[1:8:3:1] | passed | 0.09344 seconds |
|
1056
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.09041 seconds |
|
1057
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.09116 seconds |
|
1058
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.09917 seconds |
|
1059
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.08937 seconds |
|
1060
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.08857 seconds |
|
1061
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.09885 seconds |
|
1062
|
+
./spec/models/spotlight/page_spec.rb[1:11:3] | passed | 0.09516 seconds |
|
1063
|
+
./spec/models/spotlight/page_spec.rb[1:11:4:1] | passed | 0.08928 seconds |
|
1064
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.05284 seconds |
|
1065
|
+
./spec/models/spotlight/page_spec.rb[1:12:2] | passed | 0.05719 seconds |
|
1066
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.12813 seconds |
|
1067
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.06007 seconds |
|
1068
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.06642 seconds |
|
1069
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.05665 seconds |
|
1070
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.05285 seconds |
|
1071
|
+
./spec/models/spotlight/page_spec.rb[1:15:4] | passed | 0.05538 seconds |
|
1072
|
+
./spec/models/spotlight/page_spec.rb[1:15:5:1] | passed | 0.07902 seconds |
|
1073
|
+
./spec/models/spotlight/page_spec.rb[1:15:6:1] | passed | 0.06727 seconds |
|
1074
|
+
./spec/models/spotlight/page_spec.rb[1:15:7:1] | passed | 0.0735 seconds |
|
1075
|
+
./spec/models/spotlight/page_spec.rb[1:16:1] | passed | 0.0833 seconds |
|
1076
|
+
./spec/models/spotlight/page_spec.rb[1:16:2] | passed | 0.08454 seconds |
|
1077
|
+
./spec/models/spotlight/page_spec.rb[1:16:3] | passed | 0.08123 seconds |
|
1078
|
+
./spec/models/spotlight/page_spec.rb[1:16:4] | passed | 0.08137 seconds |
|
1079
|
+
./spec/models/spotlight/page_spec.rb[1:16:5] | passed | 0.09335 seconds |
|
1080
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1] | passed | 0.03959 seconds |
|
1081
|
+
./spec/models/spotlight/resource_spec.rb[1:1:2] | passed | 0.03718 seconds |
|
1082
|
+
./spec/models/spotlight/resource_spec.rb[1:1:3] | passed | 0.03919 seconds |
|
1083
|
+
./spec/models/spotlight/resource_spec.rb[1:1:4:1] | passed | 0.03677 seconds |
|
1084
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.03966 seconds |
|
1085
|
+
./spec/models/spotlight/resource_spec.rb[1:3:1] | passed | 0.2522 seconds |
|
1086
|
+
./spec/models/spotlight/resource_spec.rb[1:3:2] | passed | 0.07844 seconds |
|
1087
|
+
./spec/models/spotlight/resource_spec.rb[1:3:3] | passed | 0.13216 seconds |
|
1088
|
+
./spec/models/spotlight/resource_spec.rb[1:3:4] | passed | 0.13863 seconds |
|
1089
|
+
./spec/models/spotlight/resource_spec.rb[1:3:5] | passed | 0.38753 seconds |
|
1090
|
+
./spec/models/spotlight/resource_spec.rb[1:3:6:1] | passed | 0.08016 seconds |
|
1091
|
+
./spec/models/spotlight/resource_spec.rb[1:3:7] | passed | 0.07619 seconds |
|
1092
|
+
./spec/models/spotlight/resource_spec.rb[1:3:8:1] | passed | 0.07584 seconds |
|
1093
|
+
./spec/models/spotlight/resource_spec.rb[1:4] | passed | 0.03868 seconds |
|
1094
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.06089 seconds |
|
1095
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:2:1] | passed | 0.07979 seconds |
|
1096
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.36826 seconds |
|
1097
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.05782 seconds |
|
1098
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.07771 seconds |
|
1099
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.07142 seconds |
|
1100
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.07142 seconds |
|
1101
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.06586 seconds |
|
1102
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.07005 seconds |
|
1103
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.07257 seconds |
|
1104
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.06403 seconds |
|
1105
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.0644 seconds |
|
1106
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.0652 seconds |
|
1107
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.06415 seconds |
|
1108
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.06635 seconds |
|
1109
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.07284 seconds |
|
1110
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.06869 seconds |
|
1111
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.06663 seconds |
|
1112
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.06689 seconds |
|
1113
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.06491 seconds |
|
1114
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.0538 seconds |
|
1115
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:1:1] | passed | 0.05387 seconds |
|
1116
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:1] | passed | 0.05662 seconds |
|
1117
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:2] | passed | 0.05732 seconds |
|
1118
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:3] | passed | 0.05423 seconds |
|
1119
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.00454 seconds |
|
1120
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.00593 seconds |
|
1121
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.00756 seconds |
|
1122
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.01198 seconds |
|
1123
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.01175 seconds |
|
1124
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.01261 seconds |
|
1125
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1] | passed | 0.03654 seconds |
|
1126
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:2:1] | passed | 0.05447 seconds |
|
1127
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1] | passed | 0.03855 seconds |
|
1128
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.04365 seconds |
|
1129
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:1] | passed | 0.04978 seconds |
|
1130
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:2] | passed | 0.05235 seconds |
|
1131
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.00698 seconds |
|
1132
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.00111 seconds |
|
1133
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.01458 seconds |
|
1134
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.01334 seconds |
|
1135
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.00477 seconds |
|
1136
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.00649 seconds |
|
1137
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.06724 seconds |
|
1138
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.13481 seconds |
|
1139
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.13355 seconds |
|
1140
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.046 seconds |
|
1141
|
+
./spec/models/spotlight/search_spec.rb[1:4:2] | passed | 0.05157 seconds |
|
1142
|
+
./spec/models/spotlight/search_spec.rb[1:4:3:1] | passed | 0.04458 seconds |
|
1143
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.04527 seconds |
|
1144
|
+
./spec/models/spotlight/search_spec.rb[1:5:2:1] | passed | 0.06648 seconds |
|
1145
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.04684 seconds |
|
1146
|
+
./spec/models/spotlight/search_spec.rb[1:7:1] | passed | 0.0382 seconds |
|
1147
|
+
./spec/models/spotlight/search_spec.rb[1:7:2] | passed | 0.03955 seconds |
|
1148
|
+
./spec/models/spotlight/search_spec.rb[1:8:1] | passed | 0.17225 seconds |
|
1149
|
+
./spec/models/spotlight/search_spec.rb[1:8:2] | passed | 0.17174 seconds |
|
1150
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.00271 seconds |
|
1151
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.11173 seconds |
|
1152
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.03958 seconds |
|
1153
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.05863 seconds |
|
1154
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.25923 seconds |
|
1155
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.16261 seconds |
|
1156
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.05375 seconds |
|
1157
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.05537 seconds |
|
1158
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.03793 seconds |
|
1159
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.05005 seconds |
|
1160
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.00142 seconds |
|
1161
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.00141 seconds |
|
1162
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.00087 seconds |
|
1163
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:4] | passed | 0.00086 seconds |
|
1164
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00057 seconds |
|
1165
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00052 seconds |
|
1166
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.00121 seconds |
|
1167
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.04528 seconds |
|
1168
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.04541 seconds |
|
1169
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.0462 seconds |
|
1170
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:4:1:1] | passed | 0.04811 seconds |
|
1171
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:1:1] | passed | 0.04529 seconds |
|
1172
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:2:1] | passed | 0.04572 seconds |
|
1173
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:3:1] | passed | 0.04479 seconds |
|
1174
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.00087 seconds |
|
1175
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.00079 seconds |
|
1176
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.00106 seconds |
|
1177
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.03976 seconds |
|
1178
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.00938 seconds |
|
1179
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.00875 seconds |
|
1180
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.00884 seconds |
|
1181
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.00854 seconds |
|
1182
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.00838 seconds |
|
1183
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.0082 seconds |
|
1184
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.00818 seconds |
|
1185
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.01052 seconds |
|
1186
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.0078 seconds |
|
1187
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.00764 seconds |
|
1188
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.00103 seconds |
|
1189
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00102 seconds |
|
1190
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:3] | passed | 0.00082 seconds |
|
1191
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:4:1] | passed | 0.26715 seconds |
|
1192
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.01086 seconds |
|
1193
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00086 seconds |
|
1194
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.00079 seconds |
|
1195
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.00124 seconds |
|
1196
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.00121 seconds |
|
1197
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00148 seconds |
|
1198
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.00102 seconds |
|
1199
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.00148 seconds |
|
1200
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.00107 seconds |
|
1201
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.00139 seconds |
|
1202
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.00108 seconds |
|
1203
|
+
./spec/services/spotlight/bulk_updates_csv_template_service_spec.rb[1:1:1] | passed | 0.19539 seconds |
|
1204
|
+
./spec/services/spotlight/bulk_updates_csv_template_service_spec.rb[1:1:2] | passed | 0.1564 seconds |
|
1205
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.00619 seconds |
|
1206
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.05708 seconds |
|
1207
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.06715 seconds |
|
1208
|
+
./spec/services/spotlight/etl/context_spec.rb[1:1:1] | passed | 0.0012 seconds |
|
1209
|
+
./spec/services/spotlight/etl/context_spec.rb[1:2:1] | passed | 0.00088 seconds |
|
1210
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:1:1] | passed | 0.00129 seconds |
|
1211
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:2:1] | passed | 0.00122 seconds |
|
1212
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:3:1] | passed | 0.00087 seconds |
|
1213
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:4:1] | passed | 0.00069 seconds |
|
1214
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:1] | passed | 0.00169 seconds |
|
1215
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:2] | passed | 0.00108 seconds |
|
1216
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:3] | passed | 0.00144 seconds |
|
1217
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:4] | passed | 0.00146 seconds |
|
1218
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:5] | passed | 0.00195 seconds |
|
1219
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:6] | passed | 0.00102 seconds |
|
1220
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:7] | passed | 0.00156 seconds |
|
1221
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:1] | passed | 0.00165 seconds |
|
1222
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:2] | passed | 0.00181 seconds |
|
1223
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:2:1] | passed | 0.00088 seconds |
|
1224
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:1:1] | passed | 0.00142 seconds |
|
1225
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:2:1] | passed | 0.00088 seconds |
|
1226
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:1] | passed | 0.00064 seconds |
|
1227
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:2] | passed | 0.00092 seconds |
|
1228
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:1] | passed | 0.00071 seconds |
|
1229
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:2] | passed | 0.0006 seconds |
|
1230
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:1] | passed | 0.00113 seconds |
|
1231
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:2] | passed | 0.00089 seconds |
|
1232
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:1] | passed | 0.00071 seconds |
|
1233
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:2] | passed | 0.0005 seconds |
|
1234
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:3:1] | passed | 0.00068 seconds |
|
1235
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:1] | passed | 0.00081 seconds |
|
1236
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:2] | passed | 0.00097 seconds |
|
1237
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:1] | passed | 0.00053 seconds |
|
1238
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:2:1] | passed | 0.00065 seconds |
|
1239
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:1] | passed | 0.0533 seconds |
|
1240
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:2] | passed | 0.06985 seconds |
|
1241
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:3] | passed | 0.05402 seconds |
|
1242
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:4] | passed | 0.05622 seconds |
|
1243
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:5] | passed | 0.05949 seconds |
|
1244
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:6] | passed | 0.06154 seconds |
|
1245
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:7] | passed | 0.05717 seconds |
|
1246
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:8] | passed | 0.05817 seconds |
|
1247
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:9] | passed | 0.05894 seconds |
|
1248
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:10] | passed | 0.0626 seconds |
|
1249
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:11] | passed | 0.05893 seconds |
|
1250
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:12] | passed | 0.05608 seconds |
|
1251
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:13] | passed | 0.05813 seconds |
|
1252
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:14] | passed | 0.05472 seconds |
|
1253
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:15] | passed | 0.05309 seconds |
|
1254
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:1] | passed | 0.13532 seconds |
|
1255
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:2:1] | passed | 0.14239 seconds |
|
1256
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:3] | passed | 0.1305 seconds |
|
1257
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:4] | passed | 0.13821 seconds |
|
1258
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:5:1] | passed | 0.14058 seconds |
|
1259
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:6] | passed | 0.13067 seconds |
|
1260
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:7] | passed | 0.13833 seconds |
|
1261
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:1:1] | passed | 0.15478 seconds |
|
1262
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:2:1] | passed | 0.14019 seconds |
|
1263
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:1] | passed | 0.14069 seconds |
|
1264
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:2] | passed | 0.1402 seconds |
|
1265
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:10] | passed | 0.13038 seconds |
|
1266
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:11:1] | passed | 0.13453 seconds |
|
1267
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:12] | passed | 0.18193 seconds |
|
1268
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:13:1] | passed | 0.14602 seconds |
|
1269
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:1] | passed | 0.16079 seconds |
|
1270
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:2] | passed | 0.15402 seconds |
|
1271
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:3] | passed | 0.15377 seconds |
|
1272
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:4:1] | passed | 0.19933 seconds |
|
1273
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:15] | passed | 0.17709 seconds |
|
1274
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:16] | passed | 0.15352 seconds |
|
1275
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:1] | passed | 0.1974 seconds |
|
1276
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:2] | passed | 0.19864 seconds |
|
1277
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:3] | passed | 0.19417 seconds |
|
1278
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:4:1] | passed | 0.19308 seconds |
|
1279
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:5:1] | passed | 0.10629 seconds |
|
1280
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:5:2] | passed | 0.19369 seconds |
|
1281
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:1] | passed | 0.19098 seconds |
|
1282
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:2] | passed | 0.1953 seconds |
|
1283
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:7:1] | passed | 0.2147 seconds |
|
1284
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:7:2] | passed | 0.22736 seconds |
|
1285
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:18:1] | passed | 0.14469 seconds |
|
1286
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:19:1] | passed | 0.14532 seconds |
|
1287
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:1] | passed | 0.27702 seconds |
|
1288
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:2] | passed | 0.21546 seconds |
|
1289
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:1] | passed | 0.13376 seconds |
|
1290
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:2] | passed | 0.13229 seconds |
|
1291
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:1] | passed | 0.14658 seconds |
|
1292
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:2] | passed | 0.14386 seconds |
|
1293
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:19:1] | passed | 0.039 seconds |
|
1294
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:20:1] | passed | 0.0449 seconds |
|
1295
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.0126 seconds |
|
1296
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.00519 seconds |
|
1297
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.00531 seconds |
|
1298
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.00535 seconds |
|
1299
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.00499 seconds |
|
1300
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.00621 seconds |
|
1301
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.07465 seconds |
|
1302
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.07727 seconds |
|
1303
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.0895 seconds |
|
1304
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.0007 seconds |
|
1305
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.00056 seconds |
|
1306
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.00054 seconds |
|
1307
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.00054 seconds |
|
1308
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.00453 seconds |
|
1309
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.00452 seconds |
|
1310
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.00478 seconds |
|
1311
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.00506 seconds |
|
1312
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.00489 seconds |
|
1313
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.00837 seconds |
|
1314
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.00671 seconds |
|
1315
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.059 seconds |
|
1316
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.05452 seconds |
|
1317
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.06197 seconds |
|
1318
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.08186 seconds |
|
1319
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.07225 seconds |
|
1320
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.05511 seconds |
|
1321
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.06508 seconds |
|
1322
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.06591 seconds |
|
1323
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.06666 seconds |
|
1324
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.05529 seconds |
|
1325
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.06277 seconds |
|
1326
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.06388 seconds |
|
1327
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.05393 seconds |
|
1328
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.06377 seconds |
|
1329
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.06419 seconds |
|
1330
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.04758 seconds |
|
1331
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.04747 seconds |
|
1332
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.04998 seconds |
|
1333
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.00894 seconds |
|
1334
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.01146 seconds |
|
1335
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.0552 seconds |
|
1336
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.05623 seconds |
|
1337
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.04981 seconds |
|
1338
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.05122 seconds |
|
1339
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.05302 seconds |
|
1340
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.04725 seconds |
|
1341
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.04908 seconds |
|
1342
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:6:1] | passed | 0.04454 seconds |
|
1343
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.05273 seconds |
|
1344
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.04669 seconds |
|
1345
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.05036 seconds |
|
1346
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.05007 seconds |
|
1347
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.05008 seconds |
|
1348
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.05229 seconds |
|
1349
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.00393 seconds |
|
1350
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.003 seconds |
|
1351
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.0032 seconds |
|
1352
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.06619 seconds |
|
1353
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 0.10882 seconds |
|
1354
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.04673 seconds |
|
1355
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.02634 seconds |
|
1356
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.08808 seconds |
|
1357
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.0844 seconds |
|
1358
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.08404 seconds |
|
1359
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.05011 seconds |
|
1360
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.09481 seconds |
|
1361
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.15058 seconds |
|
1362
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.09271 seconds |
|
1363
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.0879 seconds |
|
1364
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.09293 seconds |
|
1365
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.09023 seconds |
|
1366
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.09045 seconds |
|
1367
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.08951 seconds |
|
1368
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.06182 seconds |
|
1369
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.04914 seconds |
|
1370
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.0539 seconds |
|
1371
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:4] | passed | 0.05571 seconds |
|
1372
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:5] | passed | 0.06761 seconds |
|
1373
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.03395 seconds |
|
1374
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.01331 seconds |
|
1375
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.01311 seconds |
|
1376
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.00594 seconds |
|
1377
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.0847 seconds |
|
1378
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.0456 seconds |
|
1379
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.04295 seconds |
|
1380
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.04261 seconds |
|
1381
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.04458 seconds |
|
1382
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.04218 seconds |
|
1383
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01143 seconds |
|
1384
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.00993 seconds |
|
1385
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.10941 seconds |
|
1386
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.07331 seconds |
|
1387
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.07218 seconds |
|
1388
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.07343 seconds |
|
1389
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.07477 seconds |
|
1390
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.07888 seconds |
|
1391
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.02577 seconds |
|
1392
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.05061 seconds |
|
1393
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.04812 seconds |
|
1394
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.05546 seconds |
|
1395
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:1:1] | passed | 0.04507 seconds |
|
1396
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:2] | passed | 0.04458 seconds |
|
1397
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:3] | passed | 0.04339 seconds |
|
1398
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:4:1] | passed | 0.04427 seconds |
|
1399
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.08402 seconds |
|
1400
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 0.04963 seconds |
|
1401
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 0.24251 seconds |
|
1402
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.21827 seconds |
|
1403
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.12237 seconds |
|
1404
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.12801 seconds |
|
1405
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.12566 seconds |
|
1406
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.34676 seconds |
|
1407
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.36048 seconds |
|
1408
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.19502 seconds |
|
1409
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.19807 seconds |
|
1410
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.14614 seconds |
|
1411
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.04422 seconds |
|
1412
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.01416 seconds |
|
1413
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.00416 seconds |
|
1414
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00318 seconds |
|
1415
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.00329 seconds |
|
1416
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.129 seconds |
|
1417
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.12828 seconds |
|
1418
|
+
./spec/views/spotlight/featured_images/_form.html.erb_spec.rb[1:1] | passed | 0.05987 seconds |
|
1419
|
+
./spec/views/spotlight/featured_images/_upload_form.html.erb_spec.rb[1:1] | passed | 0.05018 seconds |
|
1420
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.04328 seconds |
|
1421
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.04 seconds |
|
1422
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.004 seconds |
|
1423
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:1] | passed | 0.10383 seconds |
|
1424
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:2] | passed | 0.09386 seconds |
|
1425
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:3] | passed | 0.0921 seconds |
|
1426
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:4] | passed | 0.09255 seconds |
|
1427
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:5] | passed | 0.09106 seconds |
|
1428
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:6] | passed | 0.09261 seconds |
|
1429
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:7] | passed | 0.09513 seconds |
|
1430
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:8] | passed | 0.0909 seconds |
|
1431
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.07857 seconds |
|
1432
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.05186 seconds |
|
1433
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.12468 seconds |
|
1434
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.05591 seconds |
|
1435
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.0149 seconds |
|
1436
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.02034 seconds |
|
1437
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.01674 seconds |
|
1438
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.01547 seconds |
|
1439
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.01725 seconds |
|
1440
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.01815 seconds |
|
1441
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.03504 seconds |
|
1442
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02057 seconds |
|
1443
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.01679 seconds |
|
1444
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.04357 seconds |
|
1445
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.01083 seconds |
|
1446
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.00968 seconds |
|
1447
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.02652 seconds |
|
1448
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.00985 seconds |
|
1449
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.01001 seconds |
|
1450
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.04179 seconds |
|
1451
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.00923 seconds |
|
1452
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.01134 seconds |
|
1453
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.01051 seconds |
|
1454
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.01815 seconds |
|
1455
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.10966 seconds |
|
1456
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.00504 seconds |
|
1457
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.00315 seconds |
|
1458
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.00318 seconds |
|
1459
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.11481 seconds |
|
1460
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.06667 seconds |
|
1461
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.0679 seconds |
|
1462
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.07006 seconds |
|
1463
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.06459 seconds |
|
1464
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.05784 seconds |
|
1465
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.05542 seconds |
|
1466
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.0583 seconds |
|
1467
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.05556 seconds |
|
1468
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.05797 seconds |
|
1469
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.05747 seconds |
|
1470
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.06289 seconds |
|
1471
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.05978 seconds |
|
1472
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.05273 seconds |
|
1473
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.07709 seconds |
|
1474
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.10421 seconds |
|
1475
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.07168 seconds |
|
1476
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.01696 seconds |
|
1477
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.01576 seconds |
|
1478
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.05857 seconds |
|
1479
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.00936 seconds |
|
1480
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.00652 seconds |
|
1481
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.05465 seconds |
|
1482
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.00862 seconds |
|
1483
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.01246 seconds |
|
1484
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.02168 seconds |
|
1485
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.0127 seconds |
|
1486
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:2:1] | passed | 0.00854 seconds |
|
1487
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.01628 seconds |
|
1488
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01334 seconds |
|
1489
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:3:1] | passed | 0.01261 seconds |
|
1490
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.01313 seconds |
|
1491
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.12491 seconds |
|
1492
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.08307 seconds |
|
1493
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.07424 seconds |
|
1494
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:1] | passed | 0.05254 seconds |
|
1495
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:2] | passed | 0.04086 seconds |
|
1496
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.05688 seconds |
|
1497
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.06045 seconds |
|
1498
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.06021 seconds |
|
1499
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.0621 seconds |
|
1500
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.05592 seconds |
|
1501
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.05188 seconds |
|
1502
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.0493 seconds |
|