blacklight-spotlight 3.0.0.alpha.10 → 3.0.0.rc5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/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/crop.es6 +6 -0
- 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/block_controls.js +21 -12
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +9 -2
- 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 +34 -8
- data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +211 -83
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
- data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
- data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +9 -4
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
- data/app/assets/stylesheets/spotlight/_spotlight.scss +4 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +6 -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/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 +12 -3
- 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 +10 -9
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/dashboards_controller.rb +2 -1
- 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 +5 -8
- data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
- 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 +1 -1
- data/app/helpers/spotlight/pages_helper.rb +1 -8
- data/app/helpers/spotlight/roles_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 +32 -6
- 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/mailers/spotlight/indexing_complete_mailer.rb +3 -2
- data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- 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/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/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 +19 -7
- data/app/models/spotlight/bulk_update.rb +8 -0
- data/app/models/spotlight/contact.rb +1 -1
- data/app/models/spotlight/custom_field.rb +3 -3
- 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 +9 -3
- 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 +6 -0
- data/app/models/spotlight/page_content.rb +2 -0
- data/app/models/spotlight/resource.rb +28 -62
- data/app/models/spotlight/resources/csv_upload.rb +2 -1
- data/app/models/spotlight/resources/iiif_harvester.rb +12 -3
- data/app/models/spotlight/resources/iiif_manifest.rb +11 -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 +1 -1
- 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/values/custom_field_name.rb +1 -0
- 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/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +2 -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/_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/contacts/_form.html.erb +1 -1
- 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/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
- data/app/views/spotlight/job_trackers/show.html.erb +79 -0
- data/app/views/spotlight/pages/_form.html.erb +3 -3
- 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/searches/_form.html.erb +12 -0
- 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/_honeypot_field.html.erb +4 -0
- data/app/views/spotlight/shared/_locale_picker.html.erb +1 -1
- data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +45 -0
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +3 -3
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +2 -2
- 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/_import.html.erb +5 -5
- 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 +8 -0
- data/config/locales/spotlight.ar.yml +32 -18
- data/config/locales/spotlight.en.yml +296 -93
- data/config/routes.rb +38 -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/lib/generators/spotlight/install_generator.rb +23 -2
- 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/sir_trevor_rails.rb +10 -0
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
- data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
- data/lib/migration/iiif.rb +3 -3
- data/lib/spotlight/engine.rb +29 -4
- data/lib/spotlight/upload_field_config.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
- data/spec/controllers/spotlight/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/contacts_controller_spec.rb +2 -2
- 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/home_pages_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
- data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
- 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 +1500 -125
- 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 +11 -1
- data/spec/factories/users.rb +27 -8
- data/spec/features/add_contacts_spec.rb +1 -1
- data/spec/features/add_items_spec.rb +10 -5
- data/spec/features/browse_category_admin_spec.rb +39 -7
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/bulk_actions_spec.rb +72 -0
- data/spec/features/catalog_spec.rb +3 -2
- data/spec/features/create_exhibit_spec.rb +5 -4
- data/spec/features/dashboard_spec.rb +7 -7
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/administration_spec.rb +3 -3
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
- data/spec/features/exhibits/translation_editing_spec.rb +55 -6
- data/spec/features/home_page_spec.rb +5 -5
- data/spec/features/import_exhibit_spec.rb +5 -1
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +3 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +3 -3
- 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 +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +6 -5
- data/spec/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 +0 -1
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +10 -17
- 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 +16 -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/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/solr_document_spec.rb +2 -3
- data/spec/models/spotlight/ability_spec.rb +27 -0
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
- data/spec/models/spotlight/background_job_progress_spec.rb +137 -0
- data/spec/models/spotlight/blacklight_configuration_spec.rb +8 -3
- data/spec/models/spotlight/exhibit_spec.rb +13 -59
- data/spec/models/spotlight/featured_image_spec.rb +1 -2
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- 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 +3 -3
- 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/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 +62 -3
- data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -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 -3
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +30 -25
- 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 -3
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
- data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +511 -296
- 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 -76
- 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
@@ -22,7 +22,7 @@ describe Spotlight::HomePagesController, type: :controller, versioning: true do
|
|
22
22
|
it 'shows breadcrumbs' do
|
23
23
|
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
24
24
|
expect(controller).to receive(:add_breadcrumb).with('Feature pages', exhibit_feature_pages_path(exhibit))
|
25
|
-
expect(controller).to receive(:add_breadcrumb).with('Exhibit
|
25
|
+
expect(controller).to receive(:add_breadcrumb).with('Exhibit home', [:edit, exhibit, page])
|
26
26
|
get :edit, params: { id: page, exhibit_id: page.exhibit }
|
27
27
|
expect(response).to be_successful
|
28
28
|
end
|
@@ -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
|
@@ -50,19 +50,19 @@ describe Spotlight::Resources::CsvUploadController, type: :controller do
|
|
50
50
|
request.env['HTTP_REFERER'] = 'http://test.host/'
|
51
51
|
end
|
52
52
|
|
53
|
-
it 'starts an
|
54
|
-
expect(Spotlight::
|
53
|
+
it 'starts an AddUploadsFromCsv job with the serialized CSV' do
|
54
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).with(serialized_csv, exhibit, user).and_return(nil)
|
55
55
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
56
56
|
end
|
57
57
|
|
58
58
|
it 'sets the flash message' do
|
59
|
-
expect(Spotlight::
|
59
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).and_return(nil)
|
60
60
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
61
61
|
expect(flash[:notice]).to eq "'csv-upload-fixture.csv' has been uploaded. An email will be sent to you once indexing is complete."
|
62
62
|
end
|
63
63
|
|
64
64
|
it 'redirects back' do
|
65
|
-
expect(Spotlight::
|
65
|
+
expect(Spotlight::AddUploadsFromCsv).to receive(:perform_later).and_return(nil)
|
66
66
|
post :create, params: { exhibit_id: exhibit, resources_csv_upload: { url: csv } }
|
67
67
|
expect(response).to redirect_to "http://test.host/spotlight/#{exhibit.slug}/catalog/admin"
|
68
68
|
end
|
@@ -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,125 +1,1500 @@
|
|
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/
|
60
|
-
./spec/controllers/spotlight/
|
61
|
-
./spec/controllers/spotlight/
|
62
|
-
./spec/controllers/spotlight/
|
63
|
-
./spec/controllers/spotlight/
|
64
|
-
./spec/controllers/spotlight/
|
65
|
-
./spec/
|
66
|
-
./spec/
|
67
|
-
./spec/
|
68
|
-
./spec/
|
69
|
-
./spec/
|
70
|
-
./spec/
|
71
|
-
./spec/
|
72
|
-
./spec/
|
73
|
-
./spec/
|
74
|
-
./spec/
|
75
|
-
./spec/
|
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/
|
1
|
+
example_id | status | run_time |
|
2
|
+
----------------------------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.00517 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.18812 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.03713 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.15822 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:2:1] | passed | 0.07393 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.13726 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.0926 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:3:1] | passed | 0.09494 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:1] | passed | 0.07738 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:4:2] | passed | 0.22189 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.09573 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.08572 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.09474 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.08271 seconds |
|
17
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.08863 seconds |
|
18
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.11365 seconds |
|
19
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.10032 seconds |
|
20
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.09111 seconds |
|
21
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:8:1] | passed | 0.09636 seconds |
|
22
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.07499 seconds |
|
23
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.01977 seconds |
|
24
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.0211 seconds |
|
25
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:3:1] | passed | 0.02368 seconds |
|
26
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.11045 seconds |
|
27
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.0434 seconds |
|
28
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.05967 seconds |
|
29
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.08445 seconds |
|
30
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.03806 seconds |
|
31
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.0418 seconds |
|
32
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.0562 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.0707 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.06406 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.05481 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.06432 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.05389 seconds |
|
38
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.09036 seconds |
|
39
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:2] | passed | 0.11961 seconds |
|
40
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.08806 seconds |
|
41
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.09698 seconds |
|
42
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.09352 seconds |
|
43
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.08043 seconds |
|
44
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.06786 seconds |
|
45
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:5] | passed | 0.08742 seconds |
|
46
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:1:1] | passed | 0.05285 seconds |
|
47
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:2:1] | passed | 0.04556 seconds |
|
48
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:1:3:1] | passed | 0.04928 seconds |
|
49
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:1:1] | passed | 0.12626 seconds |
|
50
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:1:2] | passed | 0.10023 seconds |
|
51
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:2:1] | passed | 0.08307 seconds |
|
52
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:2:2] | passed | 0.08405 seconds |
|
53
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:3:1] | passed | 0.07905 seconds |
|
54
|
+
./spec/controllers/spotlight/bulk_actions_controller_spec.rb[1:2:3:2] | passed | 0.08316 seconds |
|
55
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:1:1:1] | passed | 0.05325 seconds |
|
56
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:1:2:1] | passed | 0.05825 seconds |
|
57
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:1:1] | passed | 0.05602 seconds |
|
58
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:2:1] | passed | 0.26893 seconds |
|
59
|
+
./spec/controllers/spotlight/bulk_updates_controller_spec.rb[1:2:3:1] | passed | 0.06892 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.00119 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.00104 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.00182 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.04642 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.04356 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.09037 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.08379 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.0869 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.17918 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.13553 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.07623 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.14432 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.1614 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.08804 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.07964 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.56388 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.09945 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.05473 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.05398 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.08131 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.0519 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.05079 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.09863 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.09936 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.07935 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.156 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.1222 seconds |
|
87
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.12822 seconds |
|
88
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:4] | passed | 0.11936 seconds |
|
89
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.08046 seconds |
|
90
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.16409 seconds |
|
91
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.16981 seconds |
|
92
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.03836 seconds |
|
93
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.03875 seconds |
|
94
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07869 seconds |
|
95
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.08971 seconds |
|
96
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.08363 seconds |
|
97
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.09592 seconds |
|
98
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.08153 seconds |
|
99
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.00135 seconds |
|
100
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.00114 seconds |
|
101
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.03822 seconds |
|
102
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.03777 seconds |
|
103
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.03979 seconds |
|
104
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.00086 seconds |
|
105
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.00096 seconds |
|
106
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.00106 seconds |
|
107
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.03545 seconds |
|
108
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.03588 seconds |
|
109
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.03735 seconds |
|
110
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:1] | passed | 0.05451 seconds |
|
111
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:13:2] | passed | 0.05811 seconds |
|
112
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.01308 seconds |
|
113
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.00274 seconds |
|
114
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.14608 seconds |
|
115
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.10943 seconds |
|
116
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.06947 seconds |
|
117
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.05887 seconds |
|
118
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.06043 seconds |
|
119
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.05572 seconds |
|
120
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.0708 seconds |
|
121
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.06088 seconds |
|
122
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.05862 seconds |
|
123
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.04403 seconds |
|
124
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.06057 seconds |
|
125
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.06286 seconds |
|
126
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.07147 seconds |
|
127
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.0566 seconds |
|
128
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.06763 seconds |
|
129
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.05587 seconds |
|
130
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.05603 seconds |
|
131
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.05833 seconds |
|
132
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.06 seconds |
|
133
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.05966 seconds |
|
134
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.05755 seconds |
|
135
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.05543 seconds |
|
136
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.0528 seconds |
|
137
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:1:1] | passed | 0.06338 seconds |
|
138
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:2:1] | passed | 0.05616 seconds |
|
139
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.05663 seconds |
|
140
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.05263 seconds |
|
141
|
+
./spec/controllers/spotlight/custom_search_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.05511 seconds |
|
142
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.07586 seconds |
|
143
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.05374 seconds |
|
144
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.0776 seconds |
|
145
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.05209 seconds |
|
146
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.0424 seconds |
|
147
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.11073 seconds |
|
148
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1:1] | passed | 0.01216 seconds |
|
149
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:2:1] | passed | 0.05408 seconds |
|
150
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.04286 seconds |
|
151
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.0403 seconds |
|
152
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.03956 seconds |
|
153
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.03883 seconds |
|
154
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.03964 seconds |
|
155
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.01937 seconds |
|
156
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.06669 seconds |
|
157
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.05454 seconds |
|
158
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.05905 seconds |
|
159
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.05339 seconds |
|
160
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.06838 seconds |
|
161
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.07028 seconds |
|
162
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.07739 seconds |
|
163
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.11024 seconds |
|
164
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1] | passed | 0.09711 seconds |
|
165
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.08056 seconds |
|
166
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.0834 seconds |
|
167
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:1] | passed | 0.07482 seconds |
|
168
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:3:2] | passed | 0.07579 seconds |
|
169
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:4:1] | passed | 0.09235 seconds |
|
170
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:3:1] | passed | 0.0908 seconds |
|
171
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:4:1] | passed | 0.09061 seconds |
|
172
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:1] | passed | 0.08226 seconds |
|
173
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:2] | passed | 0.08316 seconds |
|
174
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:1:3] | passed | 0.08346 seconds |
|
175
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:1] | passed | 0.07418 seconds |
|
176
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:5:2:2] | passed | 0.07538 seconds |
|
177
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:1] | passed | 0.07292 seconds |
|
178
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:2] | passed | 0.09321 seconds |
|
179
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:1:3] | passed | 0.08727 seconds |
|
180
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:1] | passed | 0.07609 seconds |
|
181
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:6:2:2] | passed | 0.07611 seconds |
|
182
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:7:1] | passed | 0.11373 seconds |
|
183
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:1] | passed | 0.08074 seconds |
|
184
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:8:2] | passed | 0.07913 seconds |
|
185
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:9:1] | passed | 0.09433 seconds |
|
186
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.09874 seconds |
|
187
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.02271 seconds |
|
188
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.02112 seconds |
|
189
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.02011 seconds |
|
190
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.1024 seconds |
|
191
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.06345 seconds |
|
192
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.0583 seconds |
|
193
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.04256 seconds |
|
194
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.05656 seconds |
|
195
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.05541 seconds |
|
196
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:1:1] | passed | 0.05514 seconds |
|
197
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:2:1] | passed | 0.06175 seconds |
|
198
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:1:3:1] | passed | 0.06556 seconds |
|
199
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:1:1] | passed | 0.06117 seconds |
|
200
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:2:1] | passed | 0.06728 seconds |
|
201
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:3:1] | passed | 0.06046 seconds |
|
202
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:4:1] | passed | 0.07837 seconds |
|
203
|
+
./spec/controllers/spotlight/groups_controller_spec.rb[1:2:5:1] | passed | 0.06363 seconds |
|
204
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.07603 seconds |
|
205
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.08407 seconds |
|
206
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.09376 seconds |
|
207
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.10497 seconds |
|
208
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.09118 seconds |
|
209
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.07181 seconds |
|
210
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.1038 seconds |
|
211
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:1] | passed | 0.06585 seconds |
|
212
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:2] | passed | 0.10954 seconds |
|
213
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:5:3] | passed | 0.11543 seconds |
|
214
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:3:1] | passed | 0.0865 seconds |
|
215
|
+
./spec/controllers/spotlight/job_trackers_controller_spec.rb[1:1:1:1] | passed | 0.09566 seconds |
|
216
|
+
./spec/controllers/spotlight/job_trackers_controller_spec.rb[1:2:1:1] | passed | 0.11292 seconds |
|
217
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:1:1] | passed | 0.04496 seconds |
|
218
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:1] | passed | 0.06891 seconds |
|
219
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:2] | passed | 0.09916 seconds |
|
220
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:1:2:3] | passed | 0.23464 seconds |
|
221
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:1:1] | passed | 0.05054 seconds |
|
222
|
+
./spec/controllers/spotlight/languages_controller_spec.rb[1:2:2:1] | passed | 0.06564 seconds |
|
223
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06177 seconds |
|
224
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.05414 seconds |
|
225
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.04057 seconds |
|
226
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.04126 seconds |
|
227
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.06088 seconds |
|
228
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.07344 seconds |
|
229
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.06942 seconds |
|
230
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:1:1] | passed | 0.0941 seconds |
|
231
|
+
./spec/controllers/spotlight/pages_controller_spec.rb[1:2:1] | passed | 0.0604 seconds |
|
232
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.04501 seconds |
|
233
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.05991 seconds |
|
234
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.05612 seconds |
|
235
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.06904 seconds |
|
236
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.04186 seconds |
|
237
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.07642 seconds |
|
238
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.17308 seconds |
|
239
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.08393 seconds |
|
240
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:4] | passed | 0.08563 seconds |
|
241
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.04095 seconds |
|
242
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.0402 seconds |
|
243
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.03971 seconds |
|
244
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.04071 seconds |
|
245
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.05751 seconds |
|
246
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.05909 seconds |
|
247
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.07027 seconds |
|
248
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.06184 seconds |
|
249
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.05634 seconds |
|
250
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.05904 seconds |
|
251
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.06159 seconds |
|
252
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.06404 seconds |
|
253
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.17762 seconds |
|
254
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.06227 seconds |
|
255
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.05535 seconds |
|
256
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.05493 seconds |
|
257
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.05732 seconds |
|
258
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.05543 seconds |
|
259
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.05003 seconds |
|
260
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05006 seconds |
|
261
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.04101 seconds |
|
262
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.06935 seconds |
|
263
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.06582 seconds |
|
264
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.06685 seconds |
|
265
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.07021 seconds |
|
266
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.0667 seconds |
|
267
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.067 seconds |
|
268
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.0532 seconds |
|
269
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.04857 seconds |
|
270
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.06255 seconds |
|
271
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.07516 seconds |
|
272
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.07789 seconds |
|
273
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:3] | passed | 0.13077 seconds |
|
274
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.11718 seconds |
|
275
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.09714 seconds |
|
276
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.06586 seconds |
|
277
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.07242 seconds |
|
278
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.06294 seconds |
|
279
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.07608 seconds |
|
280
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.09505 seconds |
|
281
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.0825 seconds |
|
282
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.0209 seconds |
|
283
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.01884 seconds |
|
284
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.1145 seconds |
|
285
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.06042 seconds |
|
286
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.11462 seconds |
|
287
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.10149 seconds |
|
288
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.05331 seconds |
|
289
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.08554 seconds |
|
290
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.067 seconds |
|
291
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5] | passed | 0.08636 seconds |
|
292
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:6:1] | passed | 0.0847 seconds |
|
293
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.05431 seconds |
|
294
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.08359 seconds |
|
295
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.06722 seconds |
|
296
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.07271 seconds |
|
297
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:1:1] | passed | 0.04359 seconds |
|
298
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:1] | passed | 0.0581 seconds |
|
299
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:1:2:2] | passed | 0.05403 seconds |
|
300
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:1:1] | passed | 0.04161 seconds |
|
301
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:1] | passed | 0.12301 seconds |
|
302
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:2:2:2:1] | passed | 0.12788 seconds |
|
303
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:1] | passed | 0.0916 seconds |
|
304
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:3:2] | passed | 0.11202 seconds |
|
305
|
+
./spec/controllers/spotlight/translations_controller_spec.rb[1:4:1] | passed | 0.11584 seconds |
|
306
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.14022 seconds |
|
307
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.21804 seconds |
|
308
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.10451 seconds |
|
309
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.11755 seconds |
|
310
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.0622 seconds |
|
311
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 7.15 seconds |
|
312
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.82519 seconds |
|
313
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.52233 seconds |
|
314
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.05945 seconds |
|
315
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 2.23 seconds |
|
316
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.34163 seconds |
|
317
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3:1] | passed | 3.41 seconds |
|
318
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:4] | passed | 0.96228 seconds |
|
319
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 0.70598 seconds |
|
320
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.74874 seconds |
|
321
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.75941 seconds |
|
322
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.12486 seconds |
|
323
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.64219 seconds |
|
324
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.51808 seconds |
|
325
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.11387 seconds |
|
326
|
+
./spec/features/add_items_spec.rb[1:1:5] | passed | 0.2372 seconds |
|
327
|
+
./spec/features/add_items_spec.rb[1:1:6:1] | passed | 0.27573 seconds |
|
328
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 1.75 seconds |
|
329
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 1.33 seconds |
|
330
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 2.24 seconds |
|
331
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.26 seconds |
|
332
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.67545 seconds |
|
333
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.19426 seconds |
|
334
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 0.91209 seconds |
|
335
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 0.79737 seconds |
|
336
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.17672 seconds |
|
337
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2:1] | passed | 0.55002 seconds |
|
338
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3:1] | passed | 0.14408 seconds |
|
339
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.29901 seconds |
|
340
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.2763 seconds |
|
341
|
+
./spec/features/browse_category_admin_spec.rb[1:3:6] | passed | 0.26953 seconds |
|
342
|
+
./spec/features/browse_category_admin_spec.rb[1:3:7] | passed | 0.35795 seconds |
|
343
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.05526 seconds |
|
344
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:1] | passed | 0.17262 seconds |
|
345
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:2] | passed | 0.24304 seconds |
|
346
|
+
./spec/features/browse_category_navigation_spec.rb[1:1:3] | passed | 0.67365 seconds |
|
347
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.13918 seconds |
|
348
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.14679 seconds |
|
349
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.14332 seconds |
|
350
|
+
./spec/features/browse_category_spec.rb[1:1:1:4:1] | passed | 0.14005 seconds |
|
351
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.15348 seconds |
|
352
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.15119 seconds |
|
353
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.15749 seconds |
|
354
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.18888 seconds |
|
355
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.14574 seconds |
|
356
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.15803 seconds |
|
357
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.31288 seconds |
|
358
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.14274 seconds |
|
359
|
+
./spec/features/bulk_actions_spec.rb[1:1] | passed | 1.87 seconds |
|
360
|
+
./spec/features/bulk_actions_spec.rb[1:2] | passed | 1.56 seconds |
|
361
|
+
./spec/features/bulk_actions_spec.rb[1:3] | passed | 1.52 seconds |
|
362
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.48945 seconds |
|
363
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.11792 seconds |
|
364
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.19258 seconds |
|
365
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.26947 seconds |
|
366
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.36116 seconds |
|
367
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.15619 seconds |
|
368
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.08474 seconds |
|
369
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.52341 seconds |
|
370
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.4813 seconds |
|
371
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.63548 seconds |
|
372
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.51238 seconds |
|
373
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.29197 seconds |
|
374
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.29691 seconds |
|
375
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.30232 seconds |
|
376
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.22982 seconds |
|
377
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.15603 seconds |
|
378
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.15495 seconds |
|
379
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.33909 seconds |
|
380
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.16309 seconds |
|
381
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.34843 seconds |
|
382
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.75781 seconds |
|
383
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.45833 seconds |
|
384
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.4285 seconds |
|
385
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.04172 seconds |
|
386
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.29116 seconds |
|
387
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 0.90546 seconds |
|
388
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.30043 seconds |
|
389
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.1172 seconds |
|
390
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.3372 seconds |
|
391
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.15 seconds |
|
392
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 0.30161 seconds |
|
393
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 1.02 seconds |
|
394
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.61319 seconds |
|
395
|
+
./spec/features/exhibits/administration_spec.rb[1:1:8] | passed | 0.6409 seconds |
|
396
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 1.22 seconds |
|
397
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.29576 seconds |
|
398
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.6701 seconds |
|
399
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:4] | passed | 0.6446 seconds |
|
400
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:1] | passed | 0.68089 seconds |
|
401
|
+
./spec/features/exhibits/custom_search_fields_spec.rb[1:2] | passed | 0.21245 seconds |
|
402
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.56079 seconds |
|
403
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 0.83834 seconds |
|
404
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.22306 seconds |
|
405
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:1:1] | passed | 0.72826 seconds |
|
406
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:2:1] | passed | 0.67331 seconds |
|
407
|
+
./spec/features/exhibits/language_create_edit_spec.rb[1:3:1] | passed | 0.85404 seconds |
|
408
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:1] | passed | 0.35887 seconds |
|
409
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:2:1] | passed | 0.49462 seconds |
|
410
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:1] | passed | 0.8194 seconds |
|
411
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:2] | passed | 0.61438 seconds |
|
412
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:3:3] | passed | 0.66902 seconds |
|
413
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:1] | passed | 0.58767 seconds |
|
414
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:1:2] | passed | 0.61123 seconds |
|
415
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:1] | passed | 0.61953 seconds |
|
416
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:2:2] | passed | 0.64037 seconds |
|
417
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:1] | passed | 1.27 seconds |
|
418
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:1:4:3:2] | passed | 1.21 seconds |
|
419
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:1] | passed | 0.51396 seconds |
|
420
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:1] | passed | 0.19236 seconds |
|
421
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:2:2] | passed | 2.63 seconds |
|
422
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:1] | passed | 0.40208 seconds |
|
423
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:2:3:2] | passed | 1.27 seconds |
|
424
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:1] | passed | 0.48374 seconds |
|
425
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:1] | passed | 0.17128 seconds |
|
426
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:2:2] | passed | 1.25 seconds |
|
427
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:1] | passed | 0.17373 seconds |
|
428
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:3:2] | passed | 2.1 seconds |
|
429
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:1] | passed | 0.16839 seconds |
|
430
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:3:4:2] | passed | 2.33 seconds |
|
431
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:1] | passed | 0.19549 seconds |
|
432
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:2] | passed | 0.48639 seconds |
|
433
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:4:3] | passed | 0.95063 seconds |
|
434
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:1] | passed | 0.40201 seconds |
|
435
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:2] | passed | 0.49042 seconds |
|
436
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:5:3] | passed | 1.09 seconds |
|
437
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:6:1] | passed | 0.44156 seconds |
|
438
|
+
./spec/features/exhibits/translation_editing_spec.rb[1:7:1] | passed | 0.34808 seconds |
|
439
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.1742 seconds |
|
440
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 0.17842 seconds |
|
441
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.27608 seconds |
|
442
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.11338 seconds |
|
443
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.12779 seconds |
|
444
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.12317 seconds |
|
445
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.1235 seconds |
|
446
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.46211 seconds |
|
447
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.40667 seconds |
|
448
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.32385 seconds |
|
449
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.58 seconds |
|
450
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.35212 seconds |
|
451
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 0.9343 seconds |
|
452
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.5079 seconds |
|
453
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.85428 seconds |
|
454
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.34526 seconds |
|
455
|
+
./spec/features/home_page_spec.rb[1:6] | passed | 0.20013 seconds |
|
456
|
+
./spec/features/home_page_spec.rb[1:7:1:1] | passed | 0.61044 seconds |
|
457
|
+
./spec/features/home_page_spec.rb[1:8:1] | passed | 0.10921 seconds |
|
458
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.18 seconds |
|
459
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.6 seconds |
|
460
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.39913 seconds |
|
461
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.32418 seconds |
|
462
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.99131 seconds |
|
463
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 2.8 seconds |
|
464
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 1.12 seconds |
|
465
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.64 seconds |
|
466
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:1] | passed | 1.29 seconds |
|
467
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:2] | passed | 1.11 seconds |
|
468
|
+
./spec/features/javascript/blocks/browse_group_categories_block_spec.rb[1:3] | passed | 1.28 seconds |
|
469
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 2.65 seconds |
|
470
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 2.68 seconds |
|
471
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 3.1 seconds |
|
472
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 2.77 seconds |
|
473
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.63 seconds |
|
474
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 2.68 seconds |
|
475
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 0.96175 seconds |
|
476
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | passed | 1.33 seconds |
|
477
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.03 seconds |
|
478
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.16 seconds |
|
479
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.57 seconds |
|
480
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.99 seconds |
|
481
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.77 seconds |
|
482
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.39 seconds |
|
483
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 1.49 seconds |
|
484
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.70589 seconds |
|
485
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.32 seconds |
|
486
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.05 seconds |
|
487
|
+
./spec/features/javascript/blocks/solr_documents_carousel_block_spec.rb[1:1] | passed | 1.22 seconds |
|
488
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 1.43 seconds |
|
489
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 0.89334 seconds |
|
490
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:3] | passed | 9.55 seconds |
|
491
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:1] | passed | 0.9614 seconds |
|
492
|
+
./spec/features/javascript/browse_group_admin_spec.rb[1:2] | passed | 0.60906 seconds |
|
493
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.56 seconds |
|
494
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:2] | pending | 0.04532 seconds |
|
495
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.1 seconds |
|
496
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.24 seconds |
|
497
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 0.94683 seconds |
|
498
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.62626 seconds |
|
499
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.54574 seconds |
|
500
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 1.91 seconds |
|
501
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.07 seconds |
|
502
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.42275 seconds |
|
503
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 0.8098 seconds |
|
504
|
+
./spec/features/javascript/locale_selector_spec.rb[1:1:1] | passed | 0.39448 seconds |
|
505
|
+
./spec/features/javascript/locale_selector_spec.rb[1:2:1] | passed | 0.46084 seconds |
|
506
|
+
./spec/features/javascript/locale_selector_spec.rb[1:3:1] | passed | 0.70002 seconds |
|
507
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.52451 seconds |
|
508
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.51698 seconds |
|
509
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.34 seconds |
|
510
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.75 seconds |
|
511
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 0.98525 seconds |
|
512
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 0.84262 seconds |
|
513
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 0.85134 seconds |
|
514
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 0.70261 seconds |
|
515
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 0.92682 seconds |
|
516
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 0.79623 seconds |
|
517
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 0.80378 seconds |
|
518
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 1.08 seconds |
|
519
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.88226 seconds |
|
520
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.80529 seconds |
|
521
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 1.02 seconds |
|
522
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.19178 seconds |
|
523
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.10566 seconds |
|
524
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.10353 seconds |
|
525
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.13598 seconds |
|
526
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.26118 seconds |
|
527
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.18732 seconds |
|
528
|
+
./spec/features/main_navigation_spec.rb[1:7:1] | passed | 0.39768 seconds |
|
529
|
+
./spec/features/main_navigation_spec.rb[1:7:2:1] | passed | 0.39107 seconds |
|
530
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.31286 seconds |
|
531
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.28628 seconds |
|
532
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.29739 seconds |
|
533
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 0.86953 seconds |
|
534
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 0.70216 seconds |
|
535
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.2039 seconds |
|
536
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.14009 seconds |
|
537
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.07875 seconds |
|
538
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.08005 seconds |
|
539
|
+
./spec/features/site_users_management_spec.rb[1:1] | passed | 0.37259 seconds |
|
540
|
+
./spec/features/site_users_management_spec.rb[1:2:1] | passed | 0.32868 seconds |
|
541
|
+
./spec/features/site_users_management_spec.rb[1:3] | passed | 0.57378 seconds |
|
542
|
+
./spec/features/site_users_management_spec.rb[1:4] | passed | 0.74806 seconds |
|
543
|
+
./spec/features/site_users_management_spec.rb[1:5] | passed | 0.49185 seconds |
|
544
|
+
./spec/features/site_users_management_spec.rb[1:6] | passed | 0.34356 seconds |
|
545
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.62 seconds |
|
546
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.34731 seconds |
|
547
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.08289 seconds |
|
548
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.00594 seconds |
|
549
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.00486 seconds |
|
550
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.00442 seconds |
|
551
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.00416 seconds |
|
552
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.0041 seconds |
|
553
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.04941 seconds |
|
554
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.00232 seconds |
|
555
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.00296 seconds |
|
556
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.04052 seconds |
|
557
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.04255 seconds |
|
558
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.00262 seconds |
|
559
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.00322 seconds |
|
560
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.00913 seconds |
|
561
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.00329 seconds |
|
562
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.00346 seconds |
|
563
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.00354 seconds |
|
564
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.00255 seconds |
|
565
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.00218 seconds |
|
566
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.00175 seconds |
|
567
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.00266 seconds |
|
568
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.05216 seconds |
|
569
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.31123 seconds |
|
570
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.07642 seconds |
|
571
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.04442 seconds |
|
572
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.04727 seconds |
|
573
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.04592 seconds |
|
574
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.04995 seconds |
|
575
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.05155 seconds |
|
576
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.05091 seconds |
|
577
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.05037 seconds |
|
578
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.05024 seconds |
|
579
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.05002 seconds |
|
580
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.00285 seconds |
|
581
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.05234 seconds |
|
582
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.0033 seconds |
|
583
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.04556 seconds |
|
584
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.00222 seconds |
|
585
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:1] | passed | 0.00294 seconds |
|
586
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:2] | passed | 0.00272 seconds |
|
587
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:3] | passed | 0.00235 seconds |
|
588
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:8:4] | passed | 0.00281 seconds |
|
589
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:1:1] | passed | 0.05101 seconds |
|
590
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:1] | passed | 0.13163 seconds |
|
591
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:2] | passed | 0.13517 seconds |
|
592
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:2:3] | passed | 0.14042 seconds |
|
593
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:1] | passed | 0.00204 seconds |
|
594
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:1:2] | passed | 0.00224 seconds |
|
595
|
+
./spec/helpers/spotlight/languages_helper_spec.rb[1:3:2:1] | passed | 0.00169 seconds |
|
596
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.05495 seconds |
|
597
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.04826 seconds |
|
598
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.05296 seconds |
|
599
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.00264 seconds |
|
600
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.04937 seconds |
|
601
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.00475 seconds |
|
602
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.05142 seconds |
|
603
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.05167 seconds |
|
604
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.07142 seconds |
|
605
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:1:1] | passed | 0.04408 seconds |
|
606
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:1:2:1] | passed | 0.00418 seconds |
|
607
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:1:1] | passed | 0.04415 seconds |
|
608
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:1:2:1] | passed | 0.04316 seconds |
|
609
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:1:1] | passed | 0.00442 seconds |
|
610
|
+
./spec/helpers/spotlight/masthead_helper_spec.rb[1:2:2:2:1] | passed | 0.0041 seconds |
|
611
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.0468 seconds |
|
612
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.00266 seconds |
|
613
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.00253 seconds |
|
614
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.00239 seconds |
|
615
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.05022 seconds |
|
616
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.05139 seconds |
|
617
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:3] | passed | 0.04822 seconds |
|
618
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.05355 seconds |
|
619
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.0508 seconds |
|
620
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:1] | passed | 0.05134 seconds |
|
621
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:2] | passed | 0.05108 seconds |
|
622
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1:3] | passed | 0.05249 seconds |
|
623
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:1] | passed | 0.05009 seconds |
|
624
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:2] | passed | 0.05202 seconds |
|
625
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2:3] | passed | 0.05185 seconds |
|
626
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1] | passed | 0.05512 seconds |
|
627
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2] | passed | 0.05077 seconds |
|
628
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:3] | passed | 0.05336 seconds |
|
629
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1:1] | passed | 0.05056 seconds |
|
630
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:2:1] | passed | 0.05093 seconds |
|
631
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:6:1] | passed | 0.04916 seconds |
|
632
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | failed | 0.00504 seconds |
|
633
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.0055 seconds |
|
634
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.00283 seconds |
|
635
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.00157 seconds |
|
636
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.00419 seconds |
|
637
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.00306 seconds |
|
638
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:3] | passed | 0.00354 seconds |
|
639
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.00328 seconds |
|
640
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.00318 seconds |
|
641
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.00474 seconds |
|
642
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.00461 seconds |
|
643
|
+
./spec/helpers/spotlight/translations_helper_spec.rb[1:1:1] | passed | 0.06713 seconds |
|
644
|
+
./spec/i18n_spec.rb[1:1] | pending | 1.77 seconds |
|
645
|
+
./spec/i18n_spec.rb[1:2] | passed | 2.29 seconds |
|
646
|
+
./spec/i18n_spec.rb[1:3] | passed | 0.77803 seconds |
|
647
|
+
./spec/jobs/spotlight/add_tags_job_spec.rb[1:1] | passed | 7.6 seconds |
|
648
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.05029 seconds |
|
649
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.10741 seconds |
|
650
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:3:1] | passed | 0.27612 seconds |
|
651
|
+
./spec/jobs/spotlight/change_visibility_job_spec.rb[1:1] | passed | 2.99 seconds |
|
652
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.00128 seconds |
|
653
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:1:1] | passed | 0.24837 seconds |
|
654
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:1:2:1] | passed | 0.08726 seconds |
|
655
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:2:1] | passed | 0.39822 seconds |
|
656
|
+
./spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb[1:2:2:1] | passed | 0.35252 seconds |
|
657
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:1:1] | passed | 0.06217 seconds |
|
658
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:2:1] | passed | 0.06097 seconds |
|
659
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:3:1] | passed | 0.06779 seconds |
|
660
|
+
./spec/jobs/spotlight/reindex_exhibit_job_spec.rb[1:4:1] | passed | 0.06388 seconds |
|
661
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.05631 seconds |
|
662
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2] | passed | 0.0556 seconds |
|
663
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.04532 seconds |
|
664
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:2] | passed | 0.05346 seconds |
|
665
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:3] | passed | 0.05493 seconds |
|
666
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:3:1] | passed | 0.05694 seconds |
|
667
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:3:2] | passed | 0.05273 seconds |
|
668
|
+
./spec/jobs/spotlight/remove_tags_job_spec.rb[1:1] | passed | 8.54 seconds |
|
669
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.06001 seconds |
|
670
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.05382 seconds |
|
671
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.06691 seconds |
|
672
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.05763 seconds |
|
673
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.06121 seconds |
|
674
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.05862 seconds |
|
675
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.06486 seconds |
|
676
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.05875 seconds |
|
677
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.01057 seconds |
|
678
|
+
./spec/lib/migration/page_language_spec.rb[1:1:1] | passed | 0.04876 seconds |
|
679
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.0066 seconds |
|
680
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.004 seconds |
|
681
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.00288 seconds |
|
682
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.00624 seconds |
|
683
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.01127 seconds |
|
684
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.00832 seconds |
|
685
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.22549 seconds |
|
686
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.00596 seconds |
|
687
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.00663 seconds |
|
688
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.00613 seconds |
|
689
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.1114 seconds |
|
690
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:1] | passed | 0.00061 seconds |
|
691
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:2] | passed | 0.00047 seconds |
|
692
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:1:3] | passed | 0.00105 seconds |
|
693
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:2:1] | passed | 0.0005 seconds |
|
694
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:3:1] | passed | 0.00051 seconds |
|
695
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:1] | passed | 0.00057 seconds |
|
696
|
+
./spec/lib/spotlight/upload_field_config_spec.rb[1:4:2] | passed | 0.00059 seconds |
|
697
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.01332 seconds |
|
698
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.00219 seconds |
|
699
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.00234 seconds |
|
700
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.00253 seconds |
|
701
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.0024 seconds |
|
702
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:6:1] | passed | 0.00529 seconds |
|
703
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.04484 seconds |
|
704
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.04319 seconds |
|
705
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.04547 seconds |
|
706
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.05862 seconds |
|
707
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:1:1] | passed | 0.06344 seconds |
|
708
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:2:1] | passed | 0.06331 seconds |
|
709
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:1] | passed | 0.06048 seconds |
|
710
|
+
./spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb[1:3:2] | passed | 0.06255 seconds |
|
711
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.04563 seconds |
|
712
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.04581 seconds |
|
713
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.04631 seconds |
|
714
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.04788 seconds |
|
715
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.04538 seconds |
|
716
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.04463 seconds |
|
717
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.04907 seconds |
|
718
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:1] | passed | 0.04689 seconds |
|
719
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:2] | passed | 0.04997 seconds |
|
720
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:2:3] | passed | 0.0488 seconds |
|
721
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:1] | passed | 0.05121 seconds |
|
722
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:2] | passed | 0.06111 seconds |
|
723
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:3:3] | passed | 0.04767 seconds |
|
724
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.00067 seconds |
|
725
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.00106 seconds |
|
726
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.00076 seconds |
|
727
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.00082 seconds |
|
728
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.00051 seconds |
|
729
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.00089 seconds |
|
730
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.00109 seconds |
|
731
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.04297 seconds |
|
732
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.03977 seconds |
|
733
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.05229 seconds |
|
734
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.00385 seconds |
|
735
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.00639 seconds |
|
736
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.00396 seconds |
|
737
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.00646 seconds |
|
738
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.04044 seconds |
|
739
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.07644 seconds |
|
740
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.03855 seconds |
|
741
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.05239 seconds |
|
742
|
+
./spec/models/solr_document_spec.rb[1:10:3] | passed | 0.03878 seconds |
|
743
|
+
./spec/models/solr_document_spec.rb[1:10:4] | passed | 0.03935 seconds |
|
744
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.05986 seconds |
|
745
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.08332 seconds |
|
746
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.07016 seconds |
|
747
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.05931 seconds |
|
748
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.0385 seconds |
|
749
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.04102 seconds |
|
750
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.04096 seconds |
|
751
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.05828 seconds |
|
752
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.04201 seconds |
|
753
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.00079 seconds |
|
754
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.00101 seconds |
|
755
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.00069 seconds |
|
756
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.00074 seconds |
|
757
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.00067 seconds |
|
758
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.00237 seconds |
|
759
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.00109 seconds |
|
760
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.0449 seconds |
|
761
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.04126 seconds |
|
762
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.04998 seconds |
|
763
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.04223 seconds |
|
764
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.0528 seconds |
|
765
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.04543 seconds |
|
766
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.04206 seconds |
|
767
|
+
./spec/models/spotlight/ability_spec.rb[1:1:8] | passed | 0.05241 seconds |
|
768
|
+
./spec/models/spotlight/ability_spec.rb[1:1:9] | passed | 0.04165 seconds |
|
769
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.01402 seconds |
|
770
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.05228 seconds |
|
771
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.05357 seconds |
|
772
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.05649 seconds |
|
773
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.05434 seconds |
|
774
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.05115 seconds |
|
775
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.04838 seconds |
|
776
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.05018 seconds |
|
777
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.04936 seconds |
|
778
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.06152 seconds |
|
779
|
+
./spec/models/spotlight/ability_spec.rb[1:3:10] | passed | 0.05181 seconds |
|
780
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.05134 seconds |
|
781
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.049 seconds |
|
782
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.0514 seconds |
|
783
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.04787 seconds |
|
784
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.04972 seconds |
|
785
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.05792 seconds |
|
786
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.05862 seconds |
|
787
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.04904 seconds |
|
788
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.05084 seconds |
|
789
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.05683 seconds |
|
790
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.05811 seconds |
|
791
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.05036 seconds |
|
792
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.05088 seconds |
|
793
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.05024 seconds |
|
794
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.05084 seconds |
|
795
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.04934 seconds |
|
796
|
+
./spec/models/spotlight/ability_spec.rb[1:4:17] | passed | 0.0499 seconds |
|
797
|
+
./spec/models/spotlight/ability_spec.rb[1:4:18] | passed | 0.0599 seconds |
|
798
|
+
./spec/models/spotlight/ability_spec.rb[1:4:19] | passed | 0.05026 seconds |
|
799
|
+
./spec/models/spotlight/ability_spec.rb[1:4:20] | passed | 0.04934 seconds |
|
800
|
+
./spec/models/spotlight/ability_spec.rb[1:4:21] | passed | 0.05 seconds |
|
801
|
+
./spec/models/spotlight/ability_spec.rb[1:4:22] | passed | 0.05379 seconds |
|
802
|
+
./spec/models/spotlight/ability_spec.rb[1:4:23] | passed | 0.05198 seconds |
|
803
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:1] | passed | 0.05267 seconds |
|
804
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:2] | passed | 0.05348 seconds |
|
805
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:3] | passed | 0.06054 seconds |
|
806
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:4] | passed | 0.05248 seconds |
|
807
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:5] | passed | 0.06537 seconds |
|
808
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:6] | passed | 0.05351 seconds |
|
809
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:7] | passed | 0.05687 seconds |
|
810
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:8] | passed | 0.06316 seconds |
|
811
|
+
./spec/models/spotlight/ability_spec.rb[1:5:1:9] | passed | 0.05448 seconds |
|
812
|
+
./spec/models/spotlight/ability_spec.rb[1:5:2:1] | passed | 0.05088 seconds |
|
813
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.00112 seconds |
|
814
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.00074 seconds |
|
815
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.0451 seconds |
|
816
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.05697 seconds |
|
817
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.04794 seconds |
|
818
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.04544 seconds |
|
819
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.04874 seconds |
|
820
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.04666 seconds |
|
821
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.05024 seconds |
|
822
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.04816 seconds |
|
823
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:2:1] | passed | 0.00183 seconds |
|
824
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:1:1] | passed | 0.04878 seconds |
|
825
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:2:1] | passed | 0.04512 seconds |
|
826
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:3:1] | passed | 0.04727 seconds |
|
827
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:4:1] | passed | 0.0685 seconds |
|
828
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:4:2] | passed | 0.07164 seconds |
|
829
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:5:1] | passed | 0.05003 seconds |
|
830
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:6:1] | passed | 0.05201 seconds |
|
831
|
+
./spec/models/spotlight/background_job_progress_spec.rb[1:7:1] | passed | 0.05028 seconds |
|
832
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.04047 seconds |
|
833
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.04039 seconds |
|
834
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.04412 seconds |
|
835
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.05581 seconds |
|
836
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.04372 seconds |
|
837
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.04505 seconds |
|
838
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.0484 seconds |
|
839
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.04646 seconds |
|
840
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.04396 seconds |
|
841
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.04362 seconds |
|
842
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.04312 seconds |
|
843
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:3] | passed | 0.04744 seconds |
|
844
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.04572 seconds |
|
845
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.04013 seconds |
|
846
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.04247 seconds |
|
847
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.04215 seconds |
|
848
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.04363 seconds |
|
849
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.03956 seconds |
|
850
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.04444 seconds |
|
851
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.04401 seconds |
|
852
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.04423 seconds |
|
853
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.06436 seconds |
|
854
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.04248 seconds |
|
855
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.04276 seconds |
|
856
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.04533 seconds |
|
857
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.04306 seconds |
|
858
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.04233 seconds |
|
859
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.04295 seconds |
|
860
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.04929 seconds |
|
861
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.04343 seconds |
|
862
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.04372 seconds |
|
863
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.04414 seconds |
|
864
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.04518 seconds |
|
865
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.04318 seconds |
|
866
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.04702 seconds |
|
867
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.04286 seconds |
|
868
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.0433 seconds |
|
869
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.05633 seconds |
|
870
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.03947 seconds |
|
871
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.04695 seconds |
|
872
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.04341 seconds |
|
873
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.04246 seconds |
|
874
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.03958 seconds |
|
875
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.04482 seconds |
|
876
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.04454 seconds |
|
877
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.04262 seconds |
|
878
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:6:1] | passed | 0.04355 seconds |
|
879
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.03939 seconds |
|
880
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.04063 seconds |
|
881
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.04376 seconds |
|
882
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.04252 seconds |
|
883
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.26067 seconds |
|
884
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.17114 seconds |
|
885
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.04079 seconds |
|
886
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:3] | passed | 0.04244 seconds |
|
887
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:4] | passed | 0.0438 seconds |
|
888
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.03875 seconds |
|
889
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.04426 seconds |
|
890
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.03949 seconds |
|
891
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.0421 seconds |
|
892
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.04302 seconds |
|
893
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:2] | passed | 0.0423 seconds |
|
894
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.0426 seconds |
|
895
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1] | passed | 0.04179 seconds |
|
896
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.04222 seconds |
|
897
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:1] | passed | 0.04834 seconds |
|
898
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:2] | passed | 0.04937 seconds |
|
899
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1:3] | passed | 0.05199 seconds |
|
900
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:1] | passed | 0.04495 seconds |
|
901
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:19:2] | passed | 0.05515 seconds |
|
902
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:1] | passed | 0.03986 seconds |
|
903
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:2] | passed | 0.04072 seconds |
|
904
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:20:3] | passed | 0.03981 seconds |
|
905
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.00136 seconds |
|
906
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.00135 seconds |
|
907
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.00093 seconds |
|
908
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.00466 seconds |
|
909
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.01172 seconds |
|
910
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.00299 seconds |
|
911
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.00235 seconds |
|
912
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:3:1] | passed | 0.00312 seconds |
|
913
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.00261 seconds |
|
914
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2:1] | passed | 0.00427 seconds |
|
915
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.00578 seconds |
|
916
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.00656 seconds |
|
917
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:1] | passed | 0.00119 seconds |
|
918
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:2] | passed | 0.00057 seconds |
|
919
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:3] | passed | 0.00053 seconds |
|
920
|
+
./spec/models/spotlight/contact_form_spec.rb[1:4:4] | passed | 0.00053 seconds |
|
921
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00107 seconds |
|
922
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.04156 seconds |
|
923
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.03953 seconds |
|
924
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.03984 seconds |
|
925
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.04224 seconds |
|
926
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.00091 seconds |
|
927
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.03889 seconds |
|
928
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.03787 seconds |
|
929
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.00078 seconds |
|
930
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.04183 seconds |
|
931
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.00328 seconds |
|
932
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.00398 seconds |
|
933
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.00523 seconds |
|
934
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.00468 seconds |
|
935
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.04027 seconds |
|
936
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.04 seconds |
|
937
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.04187 seconds |
|
938
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.04711 seconds |
|
939
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.04682 seconds |
|
940
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.04158 seconds |
|
941
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.04336 seconds |
|
942
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.04375 seconds |
|
943
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.05027 seconds |
|
944
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.03885 seconds |
|
945
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:1:1:1] | passed | 0.00092 seconds |
|
946
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:1:1:1] | passed | 0.03675 seconds |
|
947
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:1:2:2:1:1] | passed | 0.03632 seconds |
|
948
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:1:1:1] | passed | 0.0008 seconds |
|
949
|
+
./spec/models/spotlight/custom_search_field_spec.rb[1:2:2:1:1] | passed | 0.03992 seconds |
|
950
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:1] | passed | 0.03565 seconds |
|
951
|
+
./spec/models/spotlight/custom_translation_extension_spec.rb[1:1:2] | passed | 0.09083 seconds |
|
952
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.00629 seconds |
|
953
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.00617 seconds |
|
954
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.03667 seconds |
|
955
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4] | passed | 0.01898 seconds |
|
956
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:1] | passed | 0.01345 seconds |
|
957
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5:2] | passed | 0.03395 seconds |
|
958
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.00689 seconds |
|
959
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7] | passed | 0.00616 seconds |
|
960
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.0354 seconds |
|
961
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:2] | passed | 0.03445 seconds |
|
962
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.03912 seconds |
|
963
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.03514 seconds |
|
964
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.00696 seconds |
|
965
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1] | passed | 0.04741 seconds |
|
966
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.05367 seconds |
|
967
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:2] | passed | 0.07999 seconds |
|
968
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1:1] | passed | 0.00596 seconds |
|
969
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:2:1] | passed | 0.00639 seconds |
|
970
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.05254 seconds |
|
971
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:2] | passed | 0.04408 seconds |
|
972
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1] | passed | 0.05452 seconds |
|
973
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1:1] | passed | 0.04095 seconds |
|
974
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2:1] | passed | 0.03942 seconds |
|
975
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:3:1] | passed | 0.03965 seconds |
|
976
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.04003 seconds |
|
977
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1] | passed | 0.03784 seconds |
|
978
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.03942 seconds |
|
979
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:1] | passed | 0.00703 seconds |
|
980
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:2] | passed | 0.00901 seconds |
|
981
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:3:1] | passed | 0.00798 seconds |
|
982
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19:4:1] | passed | 0.0084 seconds |
|
983
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:1:1] | passed | 0.04715 seconds |
|
984
|
+
./spec/models/spotlight/exhibit_spec.rb[1:20:2:1] | passed | 0.00661 seconds |
|
985
|
+
./spec/models/spotlight/exhibit_spec.rb[1:21:1] | passed | 0.00619 seconds |
|
986
|
+
./spec/models/spotlight/exhibit_spec.rb[1:22] | passed | 0.00564 seconds |
|
987
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:1] | passed | 0.04449 seconds |
|
988
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:2] | passed | 0.04858 seconds |
|
989
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:3] | passed | 0.04639 seconds |
|
990
|
+
./spec/models/spotlight/exhibit_spec.rb[1:23:4] | passed | 0.04408 seconds |
|
991
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.00087 seconds |
|
992
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.06066 seconds |
|
993
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.06669 seconds |
|
994
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.06218 seconds |
|
995
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.07075 seconds |
|
996
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.00083 seconds |
|
997
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.04064 seconds |
|
998
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.04484 seconds |
|
999
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.00082 seconds |
|
1000
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.00068 seconds |
|
1001
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.05801 seconds |
|
1002
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.0582 seconds |
|
1003
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.05901 seconds |
|
1004
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1] | passed | 0.01267 seconds |
|
1005
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:1] | passed | 0.0007 seconds |
|
1006
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:2] | passed | 0.00065 seconds |
|
1007
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1:3:1] | passed | 0.0095 seconds |
|
1008
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2:1] | passed | 0.00106 seconds |
|
1009
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2:2] | passed | 0.00062 seconds |
|
1010
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.00325 seconds |
|
1011
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.00594 seconds |
|
1012
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:3] | passed | 0.00364 seconds |
|
1013
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:1] | passed | 0.00086 seconds |
|
1014
|
+
./spec/models/spotlight/featured_image_spec.rb[1:4:2] | passed | 0.0009 seconds |
|
1015
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.0383 seconds |
|
1016
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.04156 seconds |
|
1017
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3:1] | passed | 0.03739 seconds |
|
1018
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.00107 seconds |
|
1019
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.00056 seconds |
|
1020
|
+
./spec/models/spotlight/group_spec.rb[1:1:1] | passed | 0.22908 seconds |
|
1021
|
+
./spec/models/spotlight/group_spec.rb[1:1:2] | passed | 0.21758 seconds |
|
1022
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.00089 seconds |
|
1023
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.0008 seconds |
|
1024
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.06179 seconds |
|
1025
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.04307 seconds |
|
1026
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.04442 seconds |
|
1027
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.04332 seconds |
|
1028
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.04477 seconds |
|
1029
|
+
./spec/models/spotlight/language_spec.rb[1:1:1] | passed | 0.00073 seconds |
|
1030
|
+
./spec/models/spotlight/language_spec.rb[1:1:2] | passed | 0.00054 seconds |
|
1031
|
+
./spec/models/spotlight/language_spec.rb[1:2:1] | passed | 0.05234 seconds |
|
1032
|
+
./spec/models/spotlight/language_spec.rb[1:2:2] | passed | 0.04711 seconds |
|
1033
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.03744 seconds |
|
1034
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.03859 seconds |
|
1035
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.00126 seconds |
|
1036
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.00112 seconds |
|
1037
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.00085 seconds |
|
1038
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.0008 seconds |
|
1039
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.00126 seconds |
|
1040
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:1:1] | passed | 0.05298 seconds |
|
1041
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:1] | passed | 0.05548 seconds |
|
1042
|
+
./spec/models/spotlight/page_configurations_spec.rb[1:2:2] | passed | 0.05361 seconds |
|
1043
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.04956 seconds |
|
1044
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.04927 seconds |
|
1045
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.04912 seconds |
|
1046
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.04768 seconds |
|
1047
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.04784 seconds |
|
1048
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.0486 seconds |
|
1049
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.04801 seconds |
|
1050
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.09028 seconds |
|
1051
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.0931 seconds |
|
1052
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.09128 seconds |
|
1053
|
+
./spec/models/spotlight/page_spec.rb[1:8:3:1] | passed | 0.0911 seconds |
|
1054
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.09084 seconds |
|
1055
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.08999 seconds |
|
1056
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.1026 seconds |
|
1057
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.09007 seconds |
|
1058
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.08732 seconds |
|
1059
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.11553 seconds |
|
1060
|
+
./spec/models/spotlight/page_spec.rb[1:11:3] | passed | 0.0958 seconds |
|
1061
|
+
./spec/models/spotlight/page_spec.rb[1:11:4:1] | passed | 0.08823 seconds |
|
1062
|
+
./spec/models/spotlight/page_spec.rb[1:12:1] | passed | 0.05857 seconds |
|
1063
|
+
./spec/models/spotlight/page_spec.rb[1:12:2] | passed | 0.05946 seconds |
|
1064
|
+
./spec/models/spotlight/page_spec.rb[1:13:1] | passed | 0.13154 seconds |
|
1065
|
+
./spec/models/spotlight/page_spec.rb[1:14:1] | passed | 0.06052 seconds |
|
1066
|
+
./spec/models/spotlight/page_spec.rb[1:15:1] | passed | 0.06321 seconds |
|
1067
|
+
./spec/models/spotlight/page_spec.rb[1:15:2] | passed | 0.05782 seconds |
|
1068
|
+
./spec/models/spotlight/page_spec.rb[1:15:3] | passed | 0.05855 seconds |
|
1069
|
+
./spec/models/spotlight/page_spec.rb[1:15:4] | passed | 0.05937 seconds |
|
1070
|
+
./spec/models/spotlight/page_spec.rb[1:15:5:1] | passed | 0.08048 seconds |
|
1071
|
+
./spec/models/spotlight/page_spec.rb[1:15:6:1] | passed | 0.07197 seconds |
|
1072
|
+
./spec/models/spotlight/page_spec.rb[1:15:7:1] | passed | 0.07647 seconds |
|
1073
|
+
./spec/models/spotlight/page_spec.rb[1:16:1] | passed | 0.08586 seconds |
|
1074
|
+
./spec/models/spotlight/page_spec.rb[1:16:2] | passed | 0.09191 seconds |
|
1075
|
+
./spec/models/spotlight/page_spec.rb[1:16:3] | passed | 0.08641 seconds |
|
1076
|
+
./spec/models/spotlight/page_spec.rb[1:16:4] | passed | 0.08905 seconds |
|
1077
|
+
./spec/models/spotlight/page_spec.rb[1:16:5] | passed | 0.08904 seconds |
|
1078
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1] | passed | 0.03898 seconds |
|
1079
|
+
./spec/models/spotlight/resource_spec.rb[1:1:2] | passed | 0.03932 seconds |
|
1080
|
+
./spec/models/spotlight/resource_spec.rb[1:1:3] | passed | 0.03983 seconds |
|
1081
|
+
./spec/models/spotlight/resource_spec.rb[1:1:4:1] | passed | 0.04024 seconds |
|
1082
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.04239 seconds |
|
1083
|
+
./spec/models/spotlight/resource_spec.rb[1:3:1] | passed | 0.23182 seconds |
|
1084
|
+
./spec/models/spotlight/resource_spec.rb[1:3:2] | passed | 0.08028 seconds |
|
1085
|
+
./spec/models/spotlight/resource_spec.rb[1:3:3] | passed | 0.13718 seconds |
|
1086
|
+
./spec/models/spotlight/resource_spec.rb[1:3:4] | passed | 0.08111 seconds |
|
1087
|
+
./spec/models/spotlight/resource_spec.rb[1:3:5] | passed | 0.08093 seconds |
|
1088
|
+
./spec/models/spotlight/resource_spec.rb[1:3:6:1] | passed | 0.07831 seconds |
|
1089
|
+
./spec/models/spotlight/resource_spec.rb[1:3:7] | passed | 0.0775 seconds |
|
1090
|
+
./spec/models/spotlight/resource_spec.rb[1:3:8:1] | passed | 0.07563 seconds |
|
1091
|
+
./spec/models/spotlight/resource_spec.rb[1:4] | passed | 0.03994 seconds |
|
1092
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.0595 seconds |
|
1093
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:2:1] | passed | 0.08256 seconds |
|
1094
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.353 seconds |
|
1095
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.06048 seconds |
|
1096
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.05858 seconds |
|
1097
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.06422 seconds |
|
1098
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.0848 seconds |
|
1099
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.06904 seconds |
|
1100
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.06962 seconds |
|
1101
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.07102 seconds |
|
1102
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.06766 seconds |
|
1103
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.07096 seconds |
|
1104
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.06705 seconds |
|
1105
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.06761 seconds |
|
1106
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.06666 seconds |
|
1107
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.07508 seconds |
|
1108
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.07492 seconds |
|
1109
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.05796 seconds |
|
1110
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.06118 seconds |
|
1111
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.065 seconds |
|
1112
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.05273 seconds |
|
1113
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:1:1] | passed | 0.05422 seconds |
|
1114
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:1] | passed | 0.0601 seconds |
|
1115
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:2] | passed | 0.05643 seconds |
|
1116
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:2:1:2:3] | passed | 0.0577 seconds |
|
1117
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.00489 seconds |
|
1118
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.00632 seconds |
|
1119
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.00731 seconds |
|
1120
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.05799 seconds |
|
1121
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.05273 seconds |
|
1122
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.06726 seconds |
|
1123
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1] | passed | 0.10191 seconds |
|
1124
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:2:1] | passed | 0.20213 seconds |
|
1125
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1] | passed | 0.04224 seconds |
|
1126
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.04753 seconds |
|
1127
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:1] | passed | 0.05087 seconds |
|
1128
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:4:2] | passed | 0.05304 seconds |
|
1129
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.00727 seconds |
|
1130
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.00083 seconds |
|
1131
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.01539 seconds |
|
1132
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.01345 seconds |
|
1133
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.00684 seconds |
|
1134
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.00799 seconds |
|
1135
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.07088 seconds |
|
1136
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.14142 seconds |
|
1137
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.14207 seconds |
|
1138
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.04998 seconds |
|
1139
|
+
./spec/models/spotlight/search_spec.rb[1:4:2] | passed | 0.05704 seconds |
|
1140
|
+
./spec/models/spotlight/search_spec.rb[1:4:3:1] | passed | 0.0505 seconds |
|
1141
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.0479 seconds |
|
1142
|
+
./spec/models/spotlight/search_spec.rb[1:5:2:1] | passed | 0.04978 seconds |
|
1143
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.04893 seconds |
|
1144
|
+
./spec/models/spotlight/search_spec.rb[1:7:1] | passed | 0.03941 seconds |
|
1145
|
+
./spec/models/spotlight/search_spec.rb[1:7:2] | passed | 0.03996 seconds |
|
1146
|
+
./spec/models/spotlight/search_spec.rb[1:8:1] | passed | 0.17954 seconds |
|
1147
|
+
./spec/models/spotlight/search_spec.rb[1:8:2] | passed | 0.17512 seconds |
|
1148
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.0026 seconds |
|
1149
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.11603 seconds |
|
1150
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.03952 seconds |
|
1151
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.03936 seconds |
|
1152
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.0427 seconds |
|
1153
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.08903 seconds |
|
1154
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.11509 seconds |
|
1155
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.13097 seconds |
|
1156
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.23511 seconds |
|
1157
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.05608 seconds |
|
1158
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.00091 seconds |
|
1159
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.00154 seconds |
|
1160
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.00088 seconds |
|
1161
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:4] | passed | 0.00108 seconds |
|
1162
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.00056 seconds |
|
1163
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.00052 seconds |
|
1164
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.00109 seconds |
|
1165
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.04605 seconds |
|
1166
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.04734 seconds |
|
1167
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.04494 seconds |
|
1168
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:4:1:1] | passed | 0.04792 seconds |
|
1169
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:1:1] | passed | 0.04546 seconds |
|
1170
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:2:1] | passed | 0.04594 seconds |
|
1171
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:5:3:1] | passed | 0.04831 seconds |
|
1172
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.00089 seconds |
|
1173
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.00123 seconds |
|
1174
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.00088 seconds |
|
1175
|
+
./spec/models/translation_spec.rb[1:1:1] | passed | 0.04155 seconds |
|
1176
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.00996 seconds |
|
1177
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.00969 seconds |
|
1178
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.00942 seconds |
|
1179
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.00905 seconds |
|
1180
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.00885 seconds |
|
1181
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.00917 seconds |
|
1182
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.00901 seconds |
|
1183
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.01102 seconds |
|
1184
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.00961 seconds |
|
1185
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.00797 seconds |
|
1186
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.00143 seconds |
|
1187
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.00081 seconds |
|
1188
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:3] | passed | 0.00084 seconds |
|
1189
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:4:1] | passed | 0.24106 seconds |
|
1190
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.00897 seconds |
|
1191
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.00094 seconds |
|
1192
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.0007 seconds |
|
1193
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.001 seconds |
|
1194
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.00104 seconds |
|
1195
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.00132 seconds |
|
1196
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.00099 seconds |
|
1197
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.00126 seconds |
|
1198
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.00099 seconds |
|
1199
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.00121 seconds |
|
1200
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.00094 seconds |
|
1201
|
+
./spec/services/spotlight/bulk_updates_csv_template_service_spec.rb[1:1:1] | passed | 0.17854 seconds |
|
1202
|
+
./spec/services/spotlight/bulk_updates_csv_template_service_spec.rb[1:1:2] | passed | 0.15291 seconds |
|
1203
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.00608 seconds |
|
1204
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:1] | passed | 0.05439 seconds |
|
1205
|
+
./spec/services/spotlight/clone_translated_page_from_locale_spec.rb[1:2:1] | passed | 0.06597 seconds |
|
1206
|
+
./spec/services/spotlight/etl/context_spec.rb[1:1:1] | passed | 0.00108 seconds |
|
1207
|
+
./spec/services/spotlight/etl/context_spec.rb[1:2:1] | passed | 0.00065 seconds |
|
1208
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:1:1] | passed | 0.00094 seconds |
|
1209
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:2:1] | passed | 0.00108 seconds |
|
1210
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:3:1] | passed | 0.0008 seconds |
|
1211
|
+
./spec/services/spotlight/etl/context_spec.rb[1:3:4:1] | passed | 0.00064 seconds |
|
1212
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:1] | passed | 0.00175 seconds |
|
1213
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:2] | passed | 0.00106 seconds |
|
1214
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:3] | passed | 0.00148 seconds |
|
1215
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:4] | passed | 0.0013 seconds |
|
1216
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:5] | passed | 0.00188 seconds |
|
1217
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:6] | passed | 0.00098 seconds |
|
1218
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:7] | passed | 0.00124 seconds |
|
1219
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:1] | passed | 0.00204 seconds |
|
1220
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:1:8:2] | passed | 0.0014 seconds |
|
1221
|
+
./spec/services/spotlight/etl/executor_spec.rb[1:2:1] | passed | 0.00098 seconds |
|
1222
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:1:1] | passed | 0.0012 seconds |
|
1223
|
+
./spec/services/spotlight/etl/pipeline_spec.rb[1:2:1] | passed | 0.00151 seconds |
|
1224
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:1] | passed | 0.00068 seconds |
|
1225
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:1:2] | passed | 0.00071 seconds |
|
1226
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:1] | passed | 0.00073 seconds |
|
1227
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:2] | passed | 0.00091 seconds |
|
1228
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:1] | passed | 0.00093 seconds |
|
1229
|
+
./spec/services/spotlight/etl/solr_loader_spec.rb[1:2:3:2] | passed | 0.00091 seconds |
|
1230
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:1] | passed | 0.00054 seconds |
|
1231
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:2] | passed | 0.00051 seconds |
|
1232
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:3:1] | passed | 0.00082 seconds |
|
1233
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:1] | passed | 0.00109 seconds |
|
1234
|
+
./spec/services/spotlight/etl/step_spec.rb[1:1:4:2] | passed | 0.00086 seconds |
|
1235
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:1] | passed | 0.00055 seconds |
|
1236
|
+
./spec/services/spotlight/etl/step_spec.rb[1:2:2:1] | passed | 0.00076 seconds |
|
1237
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:1] | passed | 0.05876 seconds |
|
1238
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:2] | passed | 0.05769 seconds |
|
1239
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:3] | passed | 0.05552 seconds |
|
1240
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:4] | passed | 0.05751 seconds |
|
1241
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:5] | passed | 0.05541 seconds |
|
1242
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:6] | passed | 0.0786 seconds |
|
1243
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:7] | passed | 0.05914 seconds |
|
1244
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:8] | passed | 0.05634 seconds |
|
1245
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:9] | passed | 0.05904 seconds |
|
1246
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:10] | passed | 0.05981 seconds |
|
1247
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:11] | passed | 0.05952 seconds |
|
1248
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:12] | passed | 0.05851 seconds |
|
1249
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:13] | passed | 0.05815 seconds |
|
1250
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:14] | passed | 0.05935 seconds |
|
1251
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:15] | passed | 0.05846 seconds |
|
1252
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:1] | passed | 0.13251 seconds |
|
1253
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:2:1] | passed | 0.1414 seconds |
|
1254
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:3] | passed | 0.13589 seconds |
|
1255
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:4] | passed | 0.15181 seconds |
|
1256
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:5:1] | passed | 0.14105 seconds |
|
1257
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:6] | passed | 0.14721 seconds |
|
1258
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:7] | passed | 0.1363 seconds |
|
1259
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:1:1] | passed | 0.15898 seconds |
|
1260
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:8:2:1] | passed | 0.14415 seconds |
|
1261
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:1] | passed | 0.14598 seconds |
|
1262
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:9:2] | passed | 0.14548 seconds |
|
1263
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:10] | passed | 0.13738 seconds |
|
1264
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:11:1] | passed | 0.1505 seconds |
|
1265
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:12] | passed | 0.18764 seconds |
|
1266
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:13:1] | passed | 0.15828 seconds |
|
1267
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:1] | passed | 0.18693 seconds |
|
1268
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:2] | passed | 0.17191 seconds |
|
1269
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:3] | passed | 0.17423 seconds |
|
1270
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:14:4:1] | passed | 0.199 seconds |
|
1271
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:15] | passed | 0.18348 seconds |
|
1272
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:16] | passed | 0.14557 seconds |
|
1273
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:1] | passed | 0.21008 seconds |
|
1274
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:2] | passed | 0.20676 seconds |
|
1275
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:3] | passed | 0.20305 seconds |
|
1276
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:4:1] | passed | 0.20088 seconds |
|
1277
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:5:1] | passed | 0.11186 seconds |
|
1278
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:5:2] | passed | 0.22164 seconds |
|
1279
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:1] | passed | 0.20793 seconds |
|
1280
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:6:2] | passed | 0.20303 seconds |
|
1281
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:7:1] | passed | 0.23288 seconds |
|
1282
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:17:7:2] | passed | 0.22771 seconds |
|
1283
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:18:1] | passed | 0.15278 seconds |
|
1284
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:16:19:1] | passed | 0.15244 seconds |
|
1285
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:1] | passed | 0.29022 seconds |
|
1286
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:17:2] | passed | 0.23978 seconds |
|
1287
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:1] | passed | 0.1422 seconds |
|
1288
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:1:2] | passed | 0.14051 seconds |
|
1289
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:1] | passed | 0.15883 seconds |
|
1290
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:18:2:2] | passed | 0.15341 seconds |
|
1291
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:19:1] | passed | 0.03894 seconds |
|
1292
|
+
./spec/services/spotlight/exhibit_import_export_service_spec.rb[1:20:1] | passed | 0.04972 seconds |
|
1293
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.01314 seconds |
|
1294
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.00561 seconds |
|
1295
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.00544 seconds |
|
1296
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.00549 seconds |
|
1297
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.00541 seconds |
|
1298
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.00552 seconds |
|
1299
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.08122 seconds |
|
1300
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.08225 seconds |
|
1301
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.096 seconds |
|
1302
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.00075 seconds |
|
1303
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.00056 seconds |
|
1304
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.00055 seconds |
|
1305
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.00055 seconds |
|
1306
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.00478 seconds |
|
1307
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.00478 seconds |
|
1308
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.00447 seconds |
|
1309
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.00435 seconds |
|
1310
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.00447 seconds |
|
1311
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.00811 seconds |
|
1312
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.00722 seconds |
|
1313
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.0608 seconds |
|
1314
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.05692 seconds |
|
1315
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.06762 seconds |
|
1316
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.06473 seconds |
|
1317
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.09079 seconds |
|
1318
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.05895 seconds |
|
1319
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.06961 seconds |
|
1320
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.06741 seconds |
|
1321
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.0689 seconds |
|
1322
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.05851 seconds |
|
1323
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.06668 seconds |
|
1324
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.0658 seconds |
|
1325
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.05828 seconds |
|
1326
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.06675 seconds |
|
1327
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.06671 seconds |
|
1328
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.04997 seconds |
|
1329
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.05341 seconds |
|
1330
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.0519 seconds |
|
1331
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.00872 seconds |
|
1332
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.01235 seconds |
|
1333
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.05065 seconds |
|
1334
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.04712 seconds |
|
1335
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.04537 seconds |
|
1336
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.05364 seconds |
|
1337
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.05441 seconds |
|
1338
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.0509 seconds |
|
1339
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.05383 seconds |
|
1340
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:6:1] | passed | 0.04629 seconds |
|
1341
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.05497 seconds |
|
1342
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.07451 seconds |
|
1343
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.05603 seconds |
|
1344
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.05831 seconds |
|
1345
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.05527 seconds |
|
1346
|
+
./spec/views/shared/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.05909 seconds |
|
1347
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.00488 seconds |
|
1348
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00295 seconds |
|
1349
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.0035 seconds |
|
1350
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.07395 seconds |
|
1351
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 0.11483 seconds |
|
1352
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02616 seconds |
|
1353
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.02802 seconds |
|
1354
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.09264 seconds |
|
1355
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.08726 seconds |
|
1356
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.08701 seconds |
|
1357
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.05088 seconds |
|
1358
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.0951 seconds |
|
1359
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 0.15627 seconds |
|
1360
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.09224 seconds |
|
1361
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.09229 seconds |
|
1362
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.0923 seconds |
|
1363
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.11818 seconds |
|
1364
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.09414 seconds |
|
1365
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.10284 seconds |
|
1366
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.06675 seconds |
|
1367
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.05424 seconds |
|
1368
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.06117 seconds |
|
1369
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:4] | passed | 0.06242 seconds |
|
1370
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:5] | passed | 0.07312 seconds |
|
1371
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.03664 seconds |
|
1372
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.01472 seconds |
|
1373
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.01355 seconds |
|
1374
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.0069 seconds |
|
1375
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.08806 seconds |
|
1376
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.05102 seconds |
|
1377
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.04106 seconds |
|
1378
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.04402 seconds |
|
1379
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.04289 seconds |
|
1380
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.04191 seconds |
|
1381
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01262 seconds |
|
1382
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.00902 seconds |
|
1383
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.082 seconds |
|
1384
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.07734 seconds |
|
1385
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.07347 seconds |
|
1386
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.07299 seconds |
|
1387
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.06773 seconds |
|
1388
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.10739 seconds |
|
1389
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.02957 seconds |
|
1390
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.05398 seconds |
|
1391
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.05142 seconds |
|
1392
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.05728 seconds |
|
1393
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:1:1] | passed | 0.04664 seconds |
|
1394
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:2] | passed | 0.04888 seconds |
|
1395
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:3] | passed | 0.04385 seconds |
|
1396
|
+
./spec/views/spotlight/exhibits/_exhibit_card.html.erb_spec.rb[1:4:1] | passed | 0.04852 seconds |
|
1397
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.08657 seconds |
|
1398
|
+
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 0.05047 seconds |
|
1399
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 0.2488 seconds |
|
1400
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.21832 seconds |
|
1401
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.1336 seconds |
|
1402
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.13171 seconds |
|
1403
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.15778 seconds |
|
1404
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.16237 seconds |
|
1405
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.13377 seconds |
|
1406
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.18785 seconds |
|
1407
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.18403 seconds |
|
1408
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.14997 seconds |
|
1409
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.0489 seconds |
|
1410
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.01453 seconds |
|
1411
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.0043 seconds |
|
1412
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.00304 seconds |
|
1413
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.00338 seconds |
|
1414
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.16575 seconds |
|
1415
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.13587 seconds |
|
1416
|
+
./spec/views/spotlight/featured_images/_form.html.erb_spec.rb[1:1] | passed | 0.05328 seconds |
|
1417
|
+
./spec/views/spotlight/featured_images/_upload_form.html.erb_spec.rb[1:1] | passed | 0.05337 seconds |
|
1418
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.04496 seconds |
|
1419
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.04726 seconds |
|
1420
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.00468 seconds |
|
1421
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:1] | passed | 0.11099 seconds |
|
1422
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:2] | passed | 0.10415 seconds |
|
1423
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:3] | passed | 0.09756 seconds |
|
1424
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:4] | passed | 0.09995 seconds |
|
1425
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:5] | passed | 0.09934 seconds |
|
1426
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:6] | passed | 0.28501 seconds |
|
1427
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:7] | passed | 0.34413 seconds |
|
1428
|
+
./spec/views/spotlight/job_trackers/show.html.erb_spec.rb[1:8] | passed | 0.1041 seconds |
|
1429
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.07453 seconds |
|
1430
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.06055 seconds |
|
1431
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.21736 seconds |
|
1432
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.05756 seconds |
|
1433
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.01493 seconds |
|
1434
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.0193 seconds |
|
1435
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.01563 seconds |
|
1436
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.01568 seconds |
|
1437
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.0176 seconds |
|
1438
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.01863 seconds |
|
1439
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.03798 seconds |
|
1440
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.02241 seconds |
|
1441
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.018 seconds |
|
1442
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.0458 seconds |
|
1443
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.01203 seconds |
|
1444
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.01085 seconds |
|
1445
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.0268 seconds |
|
1446
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.01036 seconds |
|
1447
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.01155 seconds |
|
1448
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.04038 seconds |
|
1449
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.00955 seconds |
|
1450
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.01242 seconds |
|
1451
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.01051 seconds |
|
1452
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.01856 seconds |
|
1453
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.11061 seconds |
|
1454
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.00568 seconds |
|
1455
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.00407 seconds |
|
1456
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.00351 seconds |
|
1457
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.11904 seconds |
|
1458
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.075 seconds |
|
1459
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.07555 seconds |
|
1460
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.10004 seconds |
|
1461
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.06858 seconds |
|
1462
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.06241 seconds |
|
1463
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.06355 seconds |
|
1464
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.06358 seconds |
|
1465
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.05967 seconds |
|
1466
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.06281 seconds |
|
1467
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.0631 seconds |
|
1468
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.06343 seconds |
|
1469
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.05956 seconds |
|
1470
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.05733 seconds |
|
1471
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.05635 seconds |
|
1472
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.10999 seconds |
|
1473
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.07618 seconds |
|
1474
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.01714 seconds |
|
1475
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.01635 seconds |
|
1476
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.07715 seconds |
|
1477
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.02646 seconds |
|
1478
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.00684 seconds |
|
1479
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.09834 seconds |
|
1480
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.02651 seconds |
|
1481
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.03715 seconds |
|
1482
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.04567 seconds |
|
1483
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.03282 seconds |
|
1484
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:2:1] | passed | 0.00946 seconds |
|
1485
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.03818 seconds |
|
1486
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.0164 seconds |
|
1487
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:3:1] | passed | 0.02324 seconds |
|
1488
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.03686 seconds |
|
1489
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.13574 seconds |
|
1490
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.09272 seconds |
|
1491
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.06996 seconds |
|
1492
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:1] | passed | 0.05081 seconds |
|
1493
|
+
./spec/views/spotlight/translations/_import.html.erb_spec.rb[1:2] | passed | 0.0438 seconds |
|
1494
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.05868 seconds |
|
1495
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.0658 seconds |
|
1496
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.06231 seconds |
|
1497
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.06616 seconds |
|
1498
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.05904 seconds |
|
1499
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.05486 seconds |
|
1500
|
+
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.05159 seconds |
|