blacklight-spotlight 1.5.1 → 2.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -3
- data/app/assets/javascripts/spotlight/translation_progress.js +23 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +47 -0
- data/app/assets/stylesheets/spotlight/_utilities.scss +3 -0
- data/app/assets/stylesheets/spotlight/_variables.scss +5 -0
- data/app/controllers/concerns/spotlight/controller.rb +12 -1
- data/app/controllers/spotlight/about_pages_controller.rb +6 -0
- data/app/controllers/spotlight/browse_controller.rb +1 -1
- data/app/controllers/spotlight/catalog_controller.rb +6 -1
- data/app/controllers/spotlight/exhibits_controller.rb +10 -2
- data/app/controllers/spotlight/feature_pages_controller.rb +6 -0
- data/app/controllers/spotlight/filters_controller.rb +2 -2
- data/app/controllers/spotlight/home_pages_controller.rb +10 -0
- data/app/controllers/spotlight/languages_controller.rb +46 -0
- data/app/controllers/spotlight/pages_controller.rb +57 -3
- data/app/controllers/spotlight/solr_controller.rb +3 -3
- data/app/controllers/spotlight/translations_controller.rb +34 -0
- data/app/helpers/spotlight/application_helper.rb +1 -0
- data/app/helpers/spotlight/languages_helper.rb +33 -0
- data/app/helpers/spotlight/translations_helper.rb +13 -0
- data/app/models/concerns/spotlight/custom_translation_extension.rb +4 -0
- data/app/models/concerns/spotlight/translatables.rb +30 -0
- data/app/models/spotlight/ability.rb +5 -2
- data/app/models/spotlight/about_page.rb +1 -1
- data/app/models/spotlight/exhibit.rb +14 -6
- data/app/models/spotlight/feature_page.rb +1 -2
- data/app/models/spotlight/home_page.rb +1 -3
- data/app/models/spotlight/language.rb +24 -0
- data/app/models/spotlight/main_navigation.rb +12 -0
- data/app/models/spotlight/page.rb +53 -1
- data/app/models/spotlight/resources/upload.rb +6 -1
- data/app/models/spotlight/search.rb +4 -0
- data/app/services/spotlight/clone_translated_page_from_locale.rb +32 -0
- data/app/views/_user_util_links.html.erb +1 -0
- data/app/views/devise/mailer/invitation_instructions.html.erb +2 -2
- data/app/views/layouts/spotlight/spotlight.html.erb +2 -2
- data/app/views/shared/_curated_features_navbar.html.erb +2 -2
- data/app/views/spotlight/about_pages/_sidebar.html.erb +1 -1
- data/app/views/spotlight/admin_users/index.html.erb +1 -1
- data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
- data/app/views/spotlight/exhibits/_export.html.erb +1 -1
- data/app/views/spotlight/exhibits/_form.html.erb +1 -1
- data/app/views/spotlight/exhibits/_import.html.erb +2 -1
- data/app/views/spotlight/exhibits/_languages.html.erb +56 -0
- data/app/views/spotlight/exhibits/edit.html.erb +11 -5
- data/app/views/spotlight/feature_pages/_sidebar.html.erb +1 -1
- data/app/views/spotlight/filters/_form.html.erb +2 -1
- data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +5 -0
- data/app/views/spotlight/shared/_locale_picker.html.erb +14 -0
- data/app/views/spotlight/translations/_browse_categories.html.erb +67 -0
- data/app/views/spotlight/translations/_general.html.erb +176 -0
- data/app/views/spotlight/translations/_metadata.html.erb +67 -0
- data/app/views/spotlight/translations/_page.html.erb +45 -0
- data/app/views/spotlight/translations/_pages.html.erb +37 -0
- data/app/views/spotlight/translations/_pages_table.html.erb +15 -0
- data/app/views/spotlight/translations/_search_fields.html.erb +97 -0
- data/app/views/spotlight/translations/edit.html.erb +55 -0
- data/config/i18n-tasks.yml +81 -0
- data/config/locales/devise.en.yml +2 -1
- data/config/locales/spotlight.en.yml +657 -614
- data/config/routes.rb +19 -1
- data/db/migrate/20180308203409_create_spotlight_languages.rb +12 -0
- data/db/migrate/20180403130857_translation_uniqueness.rb +5 -0
- data/db/migrate/20180405044000_add_locale_to_pages.rb +6 -0
- data/db/migrate/20180406212516_add_default_locale_reference_to_spotlight_pages.rb +7 -0
- data/lib/generators/spotlight/templates/catalog_controller.rb +2 -2
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +14 -4
- data/lib/generators/spotlight/templates/config/initializers/translation.rb +4 -2
- data/lib/migration/page_language.rb +27 -0
- data/lib/spotlight/engine.rb +32 -4
- data/lib/spotlight/upload_field_config.rb +27 -0
- data/lib/spotlight/version.rb +1 -1
- data/lib/tasks/spotlight_tasks.rake +6 -0
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +67 -1
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +50 -0
- data/spec/controllers/spotlight/filters_controller_spec.rb +4 -4
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +25 -0
- data/spec/controllers/spotlight/languages_controller_spec.rb +66 -0
- data/spec/controllers/spotlight/pages_controller_spec.rb +45 -0
- data/spec/controllers/spotlight/solr_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/translations_controller_spec.rb +67 -0
- data/spec/examples.txt +1171 -1281
- data/spec/factories/exhibits.rb +1 -1
- data/spec/factories/language.rb +6 -0
- data/spec/factories/main_navigation.rb +7 -0
- data/spec/factories/searches.rb +1 -0
- data/spec/factories/tags.rb +1 -0
- data/spec/features/exhibits/language_create_edit_spec.rb +53 -0
- data/spec/features/exhibits/translation_editing_spec.rb +397 -0
- data/spec/features/javascript/locale_selector_spec.rb +61 -0
- data/spec/helpers/spotlight/languages_helper_spec.rb +73 -0
- data/spec/helpers/spotlight/translations_helper_spec.rb +16 -0
- data/spec/i18n_spec.rb +29 -0
- data/spec/lib/migration/page_language_spec.rb +21 -0
- data/spec/lib/spotlight/upload_field_config_spec.rb +24 -0
- data/spec/models/spotlight/ability_spec.rb +17 -4
- data/spec/models/spotlight/exhibit_spec.rb +49 -0
- data/spec/models/spotlight/language_spec.rb +41 -0
- data/spec/models/spotlight/page_spec.rb +109 -0
- data/spec/models/translation_spec.rb +11 -0
- data/spec/services/spotlight/clone_translated_page_from_locale_spec.rb +29 -0
- data/spec/spec_helper.rb +1 -13
- data/spec/support/disable_friendly_id_deprecation_warnings.rb +7 -6
- data/spec/test_app_templates/Gemfile.extra +3 -0
- data/spec/test_app_templates/catalog_controller.rb +31 -31
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +9 -6
- data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +13 -0
- data/spec/views/spotlight/exhibits/_form.html.erb_spec.rb +33 -0
- data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +4 -1
- data/spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb +13 -0
- data/spec/views/spotlight/resources/new.html.erb_spec.rb +10 -4
- data/spec/views/spotlight/translations/_page.html.erb_spec.rb +75 -0
- metadata +88 -28
- data/app/assets/javascripts/spotlight/sir-trevor.js +0 -0
- data/app/views/shared/_share_follow.html.erb +0 -5
- data/config/locales/social_share_button.en.yml +0 -18
@@ -21,13 +21,13 @@ describe Spotlight::FiltersController do
|
|
21
21
|
|
22
22
|
it 'is successful' do
|
23
23
|
post :create, params: { exhibit_id: exhibit, filter: { field: 'foo_ssi', value: 'bar' } }
|
24
|
-
expect(response).to redirect_to edit_exhibit_path(exhibit,
|
24
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'filter')
|
25
25
|
expect(assigns[:exhibit].solr_data).to eq('foo_ssi' => 'bar')
|
26
26
|
end
|
27
27
|
|
28
28
|
it 'valids filter values' do
|
29
29
|
post :create, params: { exhibit_id: exhibit, filter: { field: 'foo_ssi', value: '' } }
|
30
|
-
expect(response).to redirect_to edit_exhibit_path(exhibit,
|
30
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'filter')
|
31
31
|
expect(flash[:alert]).to include "Value can't be blank"
|
32
32
|
end
|
33
33
|
end
|
@@ -54,13 +54,13 @@ describe Spotlight::FiltersController do
|
|
54
54
|
|
55
55
|
it 'is successful' do
|
56
56
|
patch :update, params: { exhibit_id: exhibit, id: exhibit_filter, filter: { field: 'foo_ssi', value: 'bar' } }
|
57
|
-
expect(response).to redirect_to edit_exhibit_path(exhibit,
|
57
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'filter')
|
58
58
|
expect(assigns[:exhibit].solr_data).to eq('foo_ssi' => 'bar')
|
59
59
|
end
|
60
60
|
|
61
61
|
it 'valids filter values' do
|
62
62
|
patch :update, params: { exhibit_id: exhibit, id: exhibit_filter, filter: { field: 'foo_ssi', value: '' } }
|
63
|
-
expect(response).to redirect_to edit_exhibit_path(exhibit,
|
63
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'filter')
|
64
64
|
expect(flash[:alert]).to include "Value can't be blank"
|
65
65
|
end
|
66
66
|
end
|
@@ -65,6 +65,16 @@ describe Spotlight::HomePagesController, type: :controller, versioning: true do
|
|
65
65
|
expect(assigns).not_to have_key :document_list
|
66
66
|
end
|
67
67
|
|
68
|
+
context 'when a non-default locale version of the page exists' do
|
69
|
+
let!(:page) { exhibit.home_page }
|
70
|
+
let!(:page_es) { FactoryBot.create(:home_page, exhibit: exhibit, locale: 'es') }
|
71
|
+
|
72
|
+
it 'is loaded' do
|
73
|
+
get :show, params: { exhibit_id: exhibit, locale: 'es' }
|
74
|
+
expect(assigns[:page]).to eq page_es
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
68
78
|
context 'when the exhibit is not published' do
|
69
79
|
before do
|
70
80
|
exhibit.update(published: false)
|
@@ -91,4 +101,19 @@ describe Spotlight::HomePagesController, type: :controller, versioning: true do
|
|
91
101
|
end
|
92
102
|
end
|
93
103
|
end
|
104
|
+
|
105
|
+
describe 'GET clone' do
|
106
|
+
let(:user) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) }
|
107
|
+
let(:page) { exhibit.home_page }
|
108
|
+
|
109
|
+
before { sign_in user }
|
110
|
+
|
111
|
+
it 'calls the CloneTranslatedPageFromLocale service' do
|
112
|
+
expect(
|
113
|
+
Spotlight::CloneTranslatedPageFromLocale
|
114
|
+
).to receive(:call).with(locale: 'es', page: page).and_call_original
|
115
|
+
|
116
|
+
get :clone, params: { exhibit_id: exhibit.id, id: page.id, language: 'es' }
|
117
|
+
end
|
118
|
+
end
|
94
119
|
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
describe Spotlight::LanguagesController do
|
2
|
+
routes { Spotlight::Engine.routes }
|
3
|
+
|
4
|
+
describe '#create' do
|
5
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
6
|
+
|
7
|
+
context 'when not signed in' do
|
8
|
+
it 'is not successful' do
|
9
|
+
post :create, params: { exhibit_id: exhibit, language: { locale: 'es' } }
|
10
|
+
expect(response).to redirect_to main_app.new_user_session_path
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
context 'when signed in as a site admin' do
|
15
|
+
before { sign_in user }
|
16
|
+
let(:user) { FactoryBot.create(:site_admin) }
|
17
|
+
|
18
|
+
it 'is successful' do
|
19
|
+
post :create, params: { exhibit_id: exhibit, language: { locale: 'es' } }
|
20
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'language')
|
21
|
+
expect(assigns[:exhibit].languages.first.locale).to eq 'es'
|
22
|
+
expect(flash[:notice]).to eq 'The language was created.'
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'validates language params' do
|
26
|
+
post :create, params: { exhibit_id: exhibit, language: { locale: nil } }
|
27
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'language')
|
28
|
+
expect(flash[:alert]).to include "Language can't be blank"
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'creates a published home page for the language' do
|
32
|
+
expect(Spotlight::HomePage.for_locale('es')).to be_blank
|
33
|
+
|
34
|
+
post :create, params: { exhibit_id: exhibit, language: { locale: 'es' } }
|
35
|
+
locale_pages = Spotlight::HomePage.for_locale('es')
|
36
|
+
expect(locale_pages.length).to eq 1
|
37
|
+
expect(locale_pages.first.exhibit).to eq exhibit
|
38
|
+
expect(locale_pages.first).to be_published
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe '#destroy' do
|
44
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
45
|
+
let(:language) { FactoryBot.create(:language, exhibit: exhibit) }
|
46
|
+
|
47
|
+
context 'when not signed in' do
|
48
|
+
it 'is not successful' do
|
49
|
+
delete :destroy, params: { exhibit_id: exhibit, id: language }
|
50
|
+
expect(response).to redirect_to main_app.new_user_session_path
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
context 'when signed in as a site admin' do
|
55
|
+
before { sign_in user }
|
56
|
+
let(:user) { FactoryBot.create(:site_admin) }
|
57
|
+
|
58
|
+
it 'is successful' do
|
59
|
+
delete :destroy, params: { exhibit_id: exhibit, id: language }
|
60
|
+
expect(response).to redirect_to edit_exhibit_path(exhibit, tab: 'language')
|
61
|
+
expect(assigns[:exhibit].languages.count).to eq 0
|
62
|
+
expect(flash[:notice]).to eq 'The language was deleted.'
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
describe Spotlight::PagesController, type: :controller do
|
2
|
+
routes { Spotlight::Engine.routes }
|
3
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
4
|
+
let(:feature_page) { FactoryBot.create(:feature_page, exhibit: exhibit, published: false) }
|
5
|
+
let(:about_page) { FactoryBot.create(:about_page, exhibit: exhibit, published: false) }
|
6
|
+
let(:update_all_params) do
|
7
|
+
{
|
8
|
+
exhibit: {
|
9
|
+
pages_attributes: {
|
10
|
+
0 => {
|
11
|
+
id: feature_page.id,
|
12
|
+
published: 1
|
13
|
+
},
|
14
|
+
1 => {
|
15
|
+
id: about_page.id,
|
16
|
+
published: 1
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
end
|
22
|
+
describe 'when signed in as a curator' do
|
23
|
+
let(:user) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) }
|
24
|
+
before do
|
25
|
+
sign_in user
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'the feature and about pages are updated' do
|
29
|
+
expect(Spotlight::Page.find(feature_page.id)).not_to be_published
|
30
|
+
expect(Spotlight::Page.find(about_page.id)).not_to be_published
|
31
|
+
put :update_all, params: update_all_params.merge(exhibit_id: exhibit.id)
|
32
|
+
expect(Spotlight::Page.find(feature_page.id)).to be_published
|
33
|
+
expect(Spotlight::Page.find(about_page.id)).to be_published
|
34
|
+
end
|
35
|
+
end
|
36
|
+
describe 'when user is not authenticated' do
|
37
|
+
it 'does not allow publishing pages' do
|
38
|
+
put :update_all, params: update_all_params.merge(exhibit_id: exhibit.id)
|
39
|
+
expect(Spotlight::Page.find(feature_page.id)).not_to be_published
|
40
|
+
expect(Spotlight::Page.find(about_page.id)).not_to be_published
|
41
|
+
expect(flash['alert']).to eq 'You need to sign in or sign up before continuing.'
|
42
|
+
expect(response).to redirect_to main_app.new_user_session_path
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -84,7 +84,7 @@ describe Spotlight::SolrController, type: :controller do
|
|
84
84
|
end
|
85
85
|
post :update, params: { resources_json_upload: { json: json }, exhibit_id: exhibit }
|
86
86
|
|
87
|
-
expect(response).to
|
87
|
+
expect(response).to redirect_to exhibit_resources_path(exhibit)
|
88
88
|
expect(doc.first).to include a: 1
|
89
89
|
end
|
90
90
|
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
describe Spotlight::TranslationsController do
|
2
|
+
routes { Spotlight::Engine.routes }
|
3
|
+
|
4
|
+
describe '#edit' do
|
5
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
6
|
+
|
7
|
+
context 'when not signed in' do
|
8
|
+
it 'is not successful' do
|
9
|
+
get :edit, params: { exhibit_id: exhibit }
|
10
|
+
expect(response).to redirect_to main_app.new_user_session_path
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
context 'when signed in as curator' do
|
15
|
+
before { sign_in user }
|
16
|
+
let(:user) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) }
|
17
|
+
it 'is successful' do
|
18
|
+
get :edit, params: { exhibit_id: exhibit }
|
19
|
+
expect(response).to render_template(:edit)
|
20
|
+
expect(response).to be_successful
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe '#update' do
|
26
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
27
|
+
|
28
|
+
context 'when not signed in' do
|
29
|
+
it 'is not successful' do
|
30
|
+
patch :update, params: { exhibit_id: exhibit, exhibit: { translations_attributes: { 0 => { id: 0, key: 'test' } } } }
|
31
|
+
expect(response).to redirect_to main_app.new_user_session_path
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'when signed in as curator' do
|
36
|
+
before { sign_in user }
|
37
|
+
let(:user) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) }
|
38
|
+
let(:translation) { FactoryBot.create(:translation, exhibit: exhibit, value: 'foo') }
|
39
|
+
it 'updates successfully' do
|
40
|
+
patch :update, params: {
|
41
|
+
exhibit_id: exhibit,
|
42
|
+
exhibit: { translations_attributes: { 0 => { id: translation, value: 'bar' } } },
|
43
|
+
language: 'fr'
|
44
|
+
}
|
45
|
+
expect(response).to redirect_to edit_exhibit_translations_path(exhibit, language: 'fr')
|
46
|
+
translation.reload
|
47
|
+
expect(translation.value).to eq 'bar'
|
48
|
+
end
|
49
|
+
|
50
|
+
context 'when emptying translation values' do
|
51
|
+
before { translation } # ensure the translation is loaded
|
52
|
+
|
53
|
+
it 'deletes those translations' do
|
54
|
+
expect do
|
55
|
+
patch :update, params: {
|
56
|
+
exhibit_id: exhibit,
|
57
|
+
exhibit: {
|
58
|
+
translations_attributes: { 0 => { id: translation, value: '' } }
|
59
|
+
},
|
60
|
+
language: 'fr'
|
61
|
+
}
|
62
|
+
end.to change(Translation, :count).by(-1)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
data/spec/examples.txt
CHANGED
@@ -1,1283 +1,1173 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
--------------------------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
-
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.
|
4
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.
|
5
|
-
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.
|
6
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
7
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:
|
8
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:
|
9
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
10
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
11
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
12
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
13
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
14
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
15
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
16
|
-
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:
|
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/browse_controller_spec.rb[1:
|
33
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
34
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
35
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
36
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
37
|
-
./spec/controllers/spotlight/browse_controller_spec.rb[1:
|
38
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.
|
39
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.
|
40
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.
|
41
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.
|
42
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.
|
43
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.
|
44
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.
|
45
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.
|
46
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.
|
47
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.
|
48
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.
|
49
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.
|
50
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.
|
51
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.
|
52
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.
|
53
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.
|
54
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.
|
55
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.
|
56
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.
|
57
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.
|
58
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.
|
59
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.
|
60
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.
|
61
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.
|
62
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.
|
63
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.
|
64
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.
|
65
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.
|
66
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.
|
67
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.
|
68
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.
|
69
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.
|
70
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.
|
71
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.
|
72
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.
|
73
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.
|
74
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.
|
75
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.
|
76
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.
|
77
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.
|
78
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.
|
79
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.
|
80
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.
|
81
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.
|
82
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.
|
83
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.
|
84
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.
|
85
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.
|
86
|
-
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.
|
87
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.
|
88
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.
|
89
|
-
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.
|
90
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.
|
91
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed |
|
92
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.
|
93
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.
|
94
|
-
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.
|
95
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.
|
96
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.
|
97
|
-
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.
|
98
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.
|
99
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.
|
100
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.
|
101
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.
|
102
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.
|
103
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.
|
104
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.
|
105
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.
|
106
|
-
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.
|
107
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.
|
108
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.
|
109
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.
|
110
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.
|
111
|
-
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.
|
112
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.
|
113
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.
|
114
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.
|
115
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.
|
116
|
-
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.
|
117
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.
|
118
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.
|
119
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.
|
120
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.
|
121
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.
|
122
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.
|
123
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.
|
124
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.
|
125
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.
|
126
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.
|
127
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.
|
128
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.
|
129
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.
|
130
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.
|
131
|
-
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.
|
132
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.
|
133
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:1:1]
|
134
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:2:2:1
|
135
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
136
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
137
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
138
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
139
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
140
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
141
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
142
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
143
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
144
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
145
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
146
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
147
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
148
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
149
|
-
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:
|
150
|
-
./spec/controllers/spotlight/
|
151
|
-
./spec/controllers/spotlight/
|
152
|
-
./spec/controllers/spotlight/
|
153
|
-
./spec/controllers/spotlight/
|
154
|
-
./spec/controllers/spotlight/
|
155
|
-
./spec/controllers/spotlight/
|
156
|
-
./spec/controllers/spotlight/
|
157
|
-
./spec/controllers/spotlight/
|
158
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:
|
159
|
-
./spec/controllers/spotlight/filters_controller_spec.rb[1:
|
160
|
-
./spec/controllers/spotlight/
|
161
|
-
./spec/controllers/spotlight/
|
162
|
-
./spec/controllers/spotlight/
|
163
|
-
./spec/controllers/spotlight/
|
164
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:
|
165
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:
|
166
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:
|
167
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
168
|
-
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:
|
169
|
-
./spec/controllers/spotlight/
|
170
|
-
./spec/controllers/spotlight/
|
171
|
-
./spec/controllers/spotlight/
|
172
|
-
./spec/controllers/spotlight/
|
173
|
-
./spec/controllers/spotlight/
|
174
|
-
./spec/controllers/spotlight/
|
175
|
-
./spec/controllers/spotlight/
|
176
|
-
./spec/controllers/spotlight/
|
177
|
-
./spec/controllers/spotlight/
|
178
|
-
./spec/controllers/spotlight/
|
179
|
-
./spec/controllers/spotlight/
|
180
|
-
./spec/controllers/spotlight/
|
181
|
-
./spec/controllers/spotlight/
|
182
|
-
./spec/controllers/spotlight/
|
183
|
-
./spec/controllers/spotlight/
|
184
|
-
./spec/controllers/spotlight/
|
185
|
-
./spec/controllers/spotlight/
|
186
|
-
./spec/controllers/spotlight/
|
187
|
-
./spec/controllers/spotlight/
|
188
|
-
./spec/controllers/spotlight/
|
189
|
-
./spec/controllers/spotlight/
|
190
|
-
./spec/controllers/spotlight/
|
191
|
-
./spec/controllers/spotlight/
|
192
|
-
./spec/controllers/spotlight/
|
193
|
-
./spec/controllers/spotlight/
|
194
|
-
./spec/controllers/spotlight/
|
195
|
-
./spec/controllers/spotlight/
|
196
|
-
./spec/controllers/spotlight/
|
197
|
-
./spec/controllers/spotlight/
|
198
|
-
./spec/controllers/spotlight/
|
199
|
-
./spec/controllers/spotlight/
|
200
|
-
./spec/controllers/spotlight/
|
201
|
-
./spec/controllers/spotlight/
|
202
|
-
./spec/controllers/spotlight/
|
203
|
-
./spec/controllers/spotlight/
|
204
|
-
./spec/controllers/spotlight/
|
205
|
-
./spec/controllers/spotlight/
|
206
|
-
./spec/controllers/spotlight/
|
207
|
-
./spec/controllers/spotlight/
|
208
|
-
./spec/controllers/spotlight/
|
209
|
-
./spec/controllers/spotlight/
|
210
|
-
./spec/controllers/spotlight/
|
211
|
-
./spec/controllers/spotlight/
|
212
|
-
./spec/controllers/spotlight/
|
213
|
-
./spec/controllers/spotlight/
|
214
|
-
./spec/controllers/spotlight/
|
215
|
-
./spec/controllers/spotlight/
|
216
|
-
./spec/controllers/spotlight/
|
217
|
-
./spec/controllers/spotlight/
|
218
|
-
./spec/controllers/spotlight/
|
219
|
-
./spec/controllers/spotlight/
|
220
|
-
./spec/controllers/spotlight/
|
221
|
-
./spec/controllers/spotlight/
|
222
|
-
./spec/controllers/spotlight/searches_controller_spec.rb[1:
|
223
|
-
./spec/controllers/spotlight/
|
224
|
-
./spec/controllers/spotlight/
|
225
|
-
./spec/controllers/spotlight/
|
226
|
-
./spec/controllers/spotlight/
|
227
|
-
./spec/controllers/spotlight/
|
228
|
-
./spec/controllers/spotlight/
|
229
|
-
./spec/controllers/spotlight/
|
230
|
-
./spec/controllers/spotlight/
|
231
|
-
./spec/controllers/spotlight/
|
232
|
-
./spec/controllers/spotlight/
|
233
|
-
./spec/controllers/spotlight/
|
234
|
-
./spec/controllers/spotlight/
|
235
|
-
./spec/controllers/spotlight/
|
236
|
-
./spec/controllers/spotlight/
|
237
|
-
./spec/controllers/spotlight/
|
238
|
-
./spec/controllers/spotlight/
|
239
|
-
./spec/controllers/spotlight/
|
240
|
-
./spec/controllers/spotlight/
|
241
|
-
./spec/controllers/spotlight/
|
242
|
-
./spec/controllers/spotlight/
|
243
|
-
./spec/
|
244
|
-
./spec/
|
245
|
-
./spec/
|
246
|
-
./spec/
|
247
|
-
./spec/
|
248
|
-
./spec/
|
249
|
-
./spec/
|
250
|
-
./spec/
|
251
|
-
./spec/
|
252
|
-
./spec/
|
253
|
-
./spec/
|
254
|
-
./spec/
|
255
|
-
./spec/
|
256
|
-
./spec/
|
257
|
-
./spec/
|
258
|
-
./spec/
|
259
|
-
./spec/features/
|
260
|
-
./spec/features/
|
261
|
-
./spec/features/
|
262
|
-
./spec/features/
|
263
|
-
./spec/features/
|
264
|
-
./spec/features/
|
265
|
-
./spec/features/
|
266
|
-
./spec/features/
|
267
|
-
./spec/features/
|
268
|
-
./spec/features/
|
269
|
-
./spec/features/
|
270
|
-
./spec/features/
|
271
|
-
./spec/features/
|
272
|
-
./spec/features/
|
273
|
-
./spec/features/
|
274
|
-
./spec/features/
|
275
|
-
./spec/features/
|
276
|
-
./spec/features/
|
277
|
-
./spec/features/
|
278
|
-
./spec/features/
|
279
|
-
./spec/features/
|
280
|
-
./spec/features/
|
281
|
-
./spec/features/
|
282
|
-
./spec/features/
|
283
|
-
./spec/features/
|
284
|
-
./spec/features/
|
285
|
-
./spec/features/
|
286
|
-
./spec/features/
|
287
|
-
./spec/features/
|
288
|
-
./spec/features/
|
289
|
-
./spec/features/
|
290
|
-
./spec/features/
|
291
|
-
./spec/features/
|
292
|
-
./spec/features/
|
293
|
-
./spec/features/
|
294
|
-
./spec/features/
|
295
|
-
./spec/features/
|
296
|
-
./spec/features/
|
297
|
-
./spec/features/
|
298
|
-
./spec/features/
|
299
|
-
./spec/features/
|
300
|
-
./spec/features/
|
301
|
-
./spec/features/
|
302
|
-
./spec/features/
|
303
|
-
./spec/features/
|
304
|
-
./spec/features/
|
305
|
-
./spec/features/
|
306
|
-
./spec/features/
|
307
|
-
./spec/features/
|
308
|
-
./spec/features/
|
309
|
-
./spec/features/
|
310
|
-
./spec/features/
|
311
|
-
./spec/features/
|
312
|
-
./spec/features/
|
313
|
-
./spec/features/
|
314
|
-
./spec/features/
|
315
|
-
./spec/features/
|
316
|
-
./spec/features/
|
317
|
-
./spec/features/
|
318
|
-
./spec/features/
|
319
|
-
./spec/features/
|
320
|
-
./spec/features/
|
321
|
-
./spec/features/
|
322
|
-
./spec/features/
|
323
|
-
./spec/features/
|
324
|
-
./spec/features/
|
325
|
-
./spec/features/
|
326
|
-
./spec/features/
|
327
|
-
./spec/features/
|
328
|
-
./spec/features/
|
329
|
-
./spec/features/
|
330
|
-
./spec/features/
|
331
|
-
./spec/features/
|
332
|
-
./spec/features/
|
333
|
-
./spec/features/
|
334
|
-
./spec/features/
|
335
|
-
./spec/features/
|
336
|
-
./spec/features/
|
337
|
-
./spec/features/
|
338
|
-
./spec/features/
|
339
|
-
./spec/features/
|
340
|
-
./spec/features/
|
341
|
-
./spec/features/
|
342
|
-
./spec/features/
|
343
|
-
./spec/features/
|
344
|
-
./spec/features/
|
345
|
-
./spec/features/
|
346
|
-
./spec/features/
|
347
|
-
./spec/features/
|
348
|
-
./spec/features/
|
349
|
-
./spec/features/
|
350
|
-
./spec/features/
|
351
|
-
./spec/features/
|
352
|
-
./spec/features/
|
353
|
-
./spec/features/
|
354
|
-
./spec/features/
|
355
|
-
./spec/features/
|
356
|
-
./spec/features/
|
357
|
-
./spec/features/
|
358
|
-
./spec/features/
|
359
|
-
./spec/features/
|
360
|
-
./spec/features/
|
361
|
-
./spec/features/
|
362
|
-
./spec/features/
|
363
|
-
./spec/features/
|
364
|
-
./spec/features/
|
365
|
-
./spec/features/
|
366
|
-
./spec/features/
|
367
|
-
./spec/features/
|
368
|
-
./spec/features/
|
369
|
-
./spec/features/
|
370
|
-
./spec/features/
|
371
|
-
./spec/features/
|
372
|
-
./spec/features/
|
373
|
-
./spec/features/
|
374
|
-
./spec/features/
|
375
|
-
./spec/features/
|
376
|
-
./spec/features/
|
377
|
-
./spec/features/
|
378
|
-
./spec/features/
|
379
|
-
./spec/features/
|
380
|
-
./spec/features/
|
381
|
-
./spec/features/
|
382
|
-
./spec/features/
|
383
|
-
./spec/features/
|
384
|
-
./spec/features/
|
385
|
-
./spec/features/
|
386
|
-
./spec/features/
|
387
|
-
./spec/features/
|
388
|
-
./spec/features/
|
389
|
-
./spec/features/
|
390
|
-
./spec/features/
|
391
|
-
./spec/features/javascript/
|
392
|
-
./spec/features/javascript/
|
393
|
-
./spec/features/
|
394
|
-
./spec/features/
|
395
|
-
./spec/features/
|
396
|
-
./spec/features/
|
397
|
-
./spec/features/
|
398
|
-
./spec/features/
|
399
|
-
./spec/features/
|
400
|
-
./spec/features/
|
401
|
-
./spec/features/
|
402
|
-
./spec/features/
|
403
|
-
./spec/features/
|
404
|
-
./spec/features/
|
405
|
-
./spec/features/
|
406
|
-
./spec/features/
|
407
|
-
./spec/features/
|
408
|
-
./spec/features/
|
409
|
-
./spec/features/
|
410
|
-
./spec/features/
|
411
|
-
./spec/features/
|
412
|
-
./spec/features/
|
413
|
-
./spec/features/
|
414
|
-
./spec/features/
|
415
|
-
./spec/features/
|
416
|
-
./spec/features/
|
417
|
-
./spec/features/
|
418
|
-
./spec/
|
419
|
-
./spec/
|
420
|
-
./spec/
|
421
|
-
./spec/
|
422
|
-
./spec/
|
423
|
-
./spec/
|
424
|
-
./spec/
|
425
|
-
./spec/
|
426
|
-
./spec/
|
427
|
-
./spec/
|
428
|
-
./spec/
|
429
|
-
./spec/
|
430
|
-
./spec/
|
431
|
-
./spec/
|
432
|
-
./spec/
|
433
|
-
./spec/
|
434
|
-
./spec/
|
435
|
-
./spec/
|
436
|
-
./spec/
|
437
|
-
./spec/
|
438
|
-
./spec/
|
439
|
-
./spec/
|
440
|
-
./spec/
|
441
|
-
./spec/
|
442
|
-
./spec/
|
443
|
-
./spec/
|
444
|
-
./spec/
|
445
|
-
./spec/
|
446
|
-
./spec/
|
447
|
-
./spec/
|
448
|
-
./spec/
|
449
|
-
./spec/
|
450
|
-
./spec/
|
451
|
-
./spec/
|
452
|
-
./spec/
|
453
|
-
./spec/
|
454
|
-
./spec/
|
455
|
-
./spec/
|
456
|
-
./spec/
|
457
|
-
./spec/
|
458
|
-
./spec/
|
459
|
-
./spec/
|
460
|
-
./spec/
|
461
|
-
./spec/
|
462
|
-
./spec/
|
463
|
-
./spec/
|
464
|
-
./spec/
|
465
|
-
./spec/
|
466
|
-
./spec/
|
467
|
-
./spec/
|
468
|
-
./spec/
|
469
|
-
./spec/
|
470
|
-
./spec/
|
471
|
-
./spec/helpers/spotlight/
|
472
|
-
./spec/helpers/spotlight/
|
473
|
-
./spec/helpers/spotlight/
|
474
|
-
./spec/helpers/spotlight/
|
475
|
-
./spec/helpers/spotlight/
|
476
|
-
./spec/helpers/spotlight/
|
477
|
-
./spec/helpers/spotlight/
|
478
|
-
./spec/helpers/spotlight/
|
479
|
-
./spec/helpers/spotlight/
|
480
|
-
./spec/helpers/spotlight/
|
481
|
-
./spec/helpers/spotlight/
|
482
|
-
./spec/helpers/spotlight/
|
483
|
-
./spec/helpers/spotlight/
|
484
|
-
./spec/helpers/spotlight/
|
485
|
-
./spec/helpers/spotlight/
|
486
|
-
./spec/helpers/spotlight/
|
487
|
-
./spec/helpers/spotlight/
|
488
|
-
./spec/helpers/spotlight/
|
489
|
-
./spec/helpers/spotlight/
|
490
|
-
./spec/helpers/spotlight/
|
491
|
-
./spec/helpers/spotlight/
|
492
|
-
./spec/
|
493
|
-
./spec/
|
494
|
-
./spec/
|
495
|
-
./spec/
|
496
|
-
./spec/
|
497
|
-
./spec/
|
498
|
-
./spec/
|
499
|
-
./spec/
|
500
|
-
./spec/
|
501
|
-
./spec/
|
502
|
-
./spec/
|
503
|
-
./spec/
|
504
|
-
./spec/
|
505
|
-
./spec/
|
506
|
-
./spec/
|
507
|
-
./spec/
|
508
|
-
./spec/
|
509
|
-
./spec/
|
510
|
-
./spec/
|
511
|
-
./spec/
|
512
|
-
./spec/
|
513
|
-
./spec/
|
514
|
-
./spec/
|
515
|
-
./spec/
|
516
|
-
./spec/
|
517
|
-
./spec/
|
518
|
-
./spec/
|
519
|
-
./spec/
|
520
|
-
./spec/
|
521
|
-
./spec/
|
522
|
-
./spec/
|
523
|
-
./spec/
|
524
|
-
./spec/
|
525
|
-
./spec/
|
526
|
-
./spec/
|
527
|
-
./spec/
|
528
|
-
./spec/
|
529
|
-
./spec/
|
530
|
-
./spec/
|
531
|
-
./spec/
|
532
|
-
./spec/
|
533
|
-
./spec/
|
534
|
-
./spec/
|
535
|
-
./spec/
|
536
|
-
./spec/
|
537
|
-
./spec/
|
538
|
-
./spec/
|
539
|
-
./spec/
|
540
|
-
./spec/
|
541
|
-
./spec/
|
542
|
-
./spec/
|
543
|
-
./spec/
|
544
|
-
./spec/
|
545
|
-
./spec/
|
546
|
-
./spec/
|
547
|
-
./spec/
|
548
|
-
./spec/
|
549
|
-
./spec/
|
550
|
-
./spec/
|
551
|
-
./spec/
|
552
|
-
./spec/
|
553
|
-
./spec/
|
554
|
-
./spec/
|
555
|
-
./spec/
|
556
|
-
./spec/
|
557
|
-
./spec/
|
558
|
-
./spec/
|
559
|
-
./spec/
|
560
|
-
./spec/
|
561
|
-
./spec/
|
562
|
-
./spec/
|
563
|
-
./spec/
|
564
|
-
./spec/
|
565
|
-
./spec/
|
566
|
-
./spec/
|
567
|
-
./spec/
|
568
|
-
./spec/
|
569
|
-
./spec/
|
570
|
-
./spec/
|
571
|
-
./spec/
|
572
|
-
./spec/
|
573
|
-
./spec/
|
574
|
-
./spec/
|
575
|
-
./spec/
|
576
|
-
./spec/
|
577
|
-
./spec/
|
578
|
-
./spec/
|
579
|
-
./spec/
|
580
|
-
./spec/
|
581
|
-
./spec/
|
582
|
-
./spec/
|
583
|
-
./spec/
|
584
|
-
./spec/
|
585
|
-
./spec/
|
586
|
-
./spec/
|
587
|
-
./spec/
|
588
|
-
./spec/
|
589
|
-
./spec/
|
590
|
-
./spec/
|
591
|
-
./spec/
|
592
|
-
./spec/
|
593
|
-
./spec/
|
594
|
-
./spec/
|
595
|
-
./spec/models/
|
596
|
-
./spec/models/
|
597
|
-
./spec/models/
|
598
|
-
./spec/models/
|
599
|
-
./spec/models/
|
600
|
-
./spec/models/
|
601
|
-
./spec/models/
|
602
|
-
./spec/models/
|
603
|
-
./spec/models/
|
604
|
-
./spec/models/
|
605
|
-
./spec/models/
|
606
|
-
./spec/models/
|
607
|
-
./spec/models/
|
608
|
-
./spec/models/
|
609
|
-
./spec/models/
|
610
|
-
./spec/models/
|
611
|
-
./spec/models/
|
612
|
-
./spec/models/
|
613
|
-
./spec/models/
|
614
|
-
./spec/models/
|
615
|
-
./spec/models/
|
616
|
-
./spec/models/
|
617
|
-
./spec/models/
|
618
|
-
./spec/models/
|
619
|
-
./spec/models/
|
620
|
-
./spec/models/
|
621
|
-
./spec/models/
|
622
|
-
./spec/models/
|
623
|
-
./spec/models/
|
624
|
-
./spec/models/
|
625
|
-
./spec/models/
|
626
|
-
./spec/models/
|
627
|
-
./spec/models/
|
628
|
-
./spec/models/
|
629
|
-
./spec/models/
|
630
|
-
./spec/models/
|
631
|
-
./spec/models/
|
632
|
-
./spec/models/
|
633
|
-
./spec/models/
|
634
|
-
./spec/models/
|
635
|
-
./spec/models/
|
636
|
-
./spec/models/
|
637
|
-
./spec/models/
|
638
|
-
./spec/models/
|
639
|
-
./spec/models/
|
640
|
-
./spec/models/spotlight/
|
641
|
-
./spec/models/spotlight/
|
642
|
-
./spec/models/spotlight/
|
643
|
-
./spec/models/spotlight/
|
644
|
-
./spec/models/spotlight/
|
645
|
-
./spec/models/spotlight/
|
646
|
-
./spec/models/spotlight/
|
647
|
-
./spec/models/spotlight/
|
648
|
-
./spec/models/spotlight/
|
649
|
-
./spec/models/spotlight/
|
650
|
-
./spec/models/spotlight/
|
651
|
-
./spec/models/spotlight/
|
652
|
-
./spec/models/spotlight/
|
653
|
-
./spec/models/spotlight/
|
654
|
-
./spec/models/spotlight/
|
655
|
-
./spec/models/spotlight/
|
656
|
-
./spec/models/spotlight/
|
657
|
-
./spec/models/spotlight/
|
658
|
-
./spec/models/spotlight/
|
659
|
-
./spec/models/spotlight/
|
660
|
-
./spec/models/spotlight/
|
661
|
-
./spec/models/spotlight/
|
662
|
-
./spec/models/spotlight/
|
663
|
-
./spec/models/spotlight/
|
664
|
-
./spec/models/spotlight/
|
665
|
-
./spec/models/spotlight/
|
666
|
-
./spec/models/spotlight/
|
667
|
-
./spec/models/spotlight/
|
668
|
-
./spec/models/spotlight/
|
669
|
-
./spec/models/spotlight/
|
670
|
-
./spec/models/spotlight/
|
671
|
-
./spec/models/spotlight/
|
672
|
-
./spec/models/spotlight/
|
673
|
-
./spec/models/spotlight/
|
674
|
-
./spec/models/spotlight/
|
675
|
-
./spec/models/spotlight/
|
676
|
-
./spec/models/spotlight/
|
677
|
-
./spec/models/spotlight/
|
678
|
-
./spec/models/spotlight/
|
679
|
-
./spec/models/spotlight/
|
680
|
-
./spec/models/spotlight/
|
681
|
-
./spec/models/spotlight/
|
682
|
-
./spec/models/spotlight/
|
683
|
-
./spec/models/spotlight/
|
684
|
-
./spec/models/spotlight/
|
685
|
-
./spec/models/spotlight/
|
686
|
-
./spec/models/spotlight/
|
687
|
-
./spec/models/spotlight/
|
688
|
-
./spec/models/spotlight/
|
689
|
-
./spec/models/spotlight/
|
690
|
-
./spec/models/spotlight/
|
691
|
-
./spec/models/spotlight/
|
692
|
-
./spec/models/spotlight/
|
693
|
-
./spec/models/spotlight/
|
694
|
-
./spec/models/spotlight/
|
695
|
-
./spec/models/spotlight/
|
696
|
-
./spec/models/spotlight/
|
697
|
-
./spec/models/spotlight/
|
698
|
-
./spec/models/spotlight/
|
699
|
-
./spec/models/spotlight/
|
700
|
-
./spec/models/spotlight/
|
701
|
-
./spec/models/spotlight/
|
702
|
-
./spec/models/spotlight/
|
703
|
-
./spec/models/spotlight/
|
704
|
-
./spec/models/spotlight/
|
705
|
-
./spec/models/spotlight/
|
706
|
-
./spec/models/spotlight/
|
707
|
-
./spec/models/spotlight/
|
708
|
-
./spec/models/spotlight/
|
709
|
-
./spec/models/spotlight/
|
710
|
-
./spec/models/spotlight/
|
711
|
-
./spec/models/spotlight/
|
712
|
-
./spec/models/spotlight/
|
713
|
-
./spec/models/spotlight/
|
714
|
-
./spec/models/spotlight/
|
715
|
-
./spec/models/spotlight/
|
716
|
-
./spec/models/spotlight/
|
717
|
-
./spec/models/spotlight/
|
718
|
-
./spec/models/spotlight/
|
719
|
-
./spec/models/spotlight/
|
720
|
-
./spec/models/spotlight/
|
721
|
-
./spec/models/spotlight/
|
722
|
-
./spec/models/spotlight/
|
723
|
-
./spec/models/spotlight/
|
724
|
-
./spec/models/spotlight/
|
725
|
-
./spec/models/spotlight/
|
726
|
-
./spec/models/spotlight/
|
727
|
-
./spec/models/spotlight/
|
728
|
-
./spec/models/spotlight/
|
729
|
-
./spec/models/spotlight/
|
730
|
-
./spec/models/spotlight/
|
731
|
-
./spec/models/spotlight/
|
732
|
-
./spec/models/spotlight/
|
733
|
-
./spec/models/spotlight/
|
734
|
-
./spec/models/spotlight/
|
735
|
-
./spec/models/spotlight/
|
736
|
-
./spec/models/spotlight/
|
737
|
-
./spec/models/spotlight/
|
738
|
-
./spec/models/spotlight/
|
739
|
-
./spec/models/spotlight/
|
740
|
-
./spec/models/spotlight/
|
741
|
-
./spec/models/spotlight/
|
742
|
-
./spec/models/spotlight/
|
743
|
-
./spec/models/spotlight/
|
744
|
-
./spec/models/spotlight/
|
745
|
-
./spec/models/spotlight/
|
746
|
-
./spec/models/spotlight/
|
747
|
-
./spec/models/spotlight/
|
748
|
-
./spec/models/spotlight/
|
749
|
-
./spec/models/spotlight/
|
750
|
-
./spec/models/spotlight/
|
751
|
-
./spec/models/spotlight/
|
752
|
-
./spec/models/spotlight/
|
753
|
-
./spec/models/spotlight/
|
754
|
-
./spec/models/spotlight/
|
755
|
-
./spec/models/spotlight/
|
756
|
-
./spec/models/spotlight/
|
757
|
-
./spec/models/spotlight/
|
758
|
-
./spec/models/spotlight/
|
759
|
-
./spec/models/spotlight/
|
760
|
-
./spec/models/spotlight/
|
761
|
-
./spec/models/spotlight/
|
762
|
-
./spec/models/spotlight/
|
763
|
-
./spec/models/spotlight/
|
764
|
-
./spec/models/spotlight/
|
765
|
-
./spec/models/spotlight/
|
766
|
-
./spec/models/spotlight/
|
767
|
-
./spec/models/spotlight/
|
768
|
-
./spec/models/spotlight/
|
769
|
-
./spec/models/spotlight/
|
770
|
-
./spec/models/spotlight/
|
771
|
-
./spec/models/spotlight/
|
772
|
-
./spec/models/spotlight/
|
773
|
-
./spec/models/spotlight/
|
774
|
-
./spec/models/spotlight/
|
775
|
-
./spec/models/spotlight/
|
776
|
-
./spec/models/spotlight/
|
777
|
-
./spec/models/spotlight/
|
778
|
-
./spec/models/spotlight/
|
779
|
-
./spec/models/spotlight/
|
780
|
-
./spec/models/spotlight/
|
781
|
-
./spec/models/spotlight/
|
782
|
-
./spec/models/spotlight/
|
783
|
-
./spec/models/spotlight/
|
784
|
-
./spec/models/spotlight/
|
785
|
-
./spec/models/spotlight/
|
786
|
-
./spec/models/spotlight/
|
787
|
-
./spec/models/spotlight/
|
788
|
-
./spec/models/spotlight/
|
789
|
-
./spec/models/spotlight/
|
790
|
-
./spec/models/spotlight/
|
791
|
-
./spec/models/spotlight/
|
792
|
-
./spec/models/spotlight/
|
793
|
-
./spec/models/spotlight/
|
794
|
-
./spec/models/spotlight/
|
795
|
-
./spec/models/spotlight/
|
796
|
-
./spec/models/spotlight/
|
797
|
-
./spec/models/spotlight/
|
798
|
-
./spec/models/spotlight/
|
799
|
-
./spec/models/spotlight/
|
800
|
-
./spec/models/spotlight/
|
801
|
-
./spec/models/spotlight/
|
802
|
-
./spec/models/spotlight/
|
803
|
-
./spec/models/spotlight/
|
804
|
-
./spec/models/spotlight/
|
805
|
-
./spec/models/spotlight/
|
806
|
-
./spec/models/spotlight/
|
807
|
-
./spec/models/spotlight/
|
808
|
-
./spec/models/spotlight/
|
809
|
-
./spec/models/spotlight/
|
810
|
-
./spec/models/spotlight/
|
811
|
-
./spec/models/spotlight/
|
812
|
-
./spec/models/spotlight/
|
813
|
-
./spec/models/spotlight/
|
814
|
-
./spec/models/spotlight/
|
815
|
-
./spec/models/spotlight/
|
816
|
-
./spec/models/spotlight/
|
817
|
-
./spec/models/spotlight/
|
818
|
-
./spec/models/spotlight/
|
819
|
-
./spec/models/spotlight/
|
820
|
-
./spec/models/spotlight/
|
821
|
-
./spec/models/spotlight/
|
822
|
-
./spec/models/spotlight/
|
823
|
-
./spec/models/spotlight/
|
824
|
-
./spec/models/spotlight/
|
825
|
-
./spec/models/spotlight/
|
826
|
-
./spec/models/spotlight/
|
827
|
-
./spec/models/spotlight/
|
828
|
-
./spec/models/spotlight/
|
829
|
-
./spec/models/spotlight/
|
830
|
-
./spec/models/spotlight/
|
831
|
-
./spec/models/spotlight/
|
832
|
-
./spec/models/spotlight/
|
833
|
-
./spec/models/spotlight/
|
834
|
-
./spec/models/spotlight/
|
835
|
-
./spec/models/spotlight/
|
836
|
-
./spec/models/spotlight/
|
837
|
-
./spec/models/spotlight/
|
838
|
-
./spec/models/spotlight/
|
839
|
-
./spec/models/spotlight/
|
840
|
-
./spec/models/spotlight/
|
841
|
-
./spec/models/spotlight/
|
842
|
-
./spec/models/spotlight/
|
843
|
-
./spec/models/spotlight/
|
844
|
-
./spec/models/spotlight/
|
845
|
-
./spec/models/spotlight/
|
846
|
-
./spec/models/spotlight/
|
847
|
-
./spec/models/spotlight/
|
848
|
-
./spec/models/spotlight/
|
849
|
-
./spec/models/spotlight/
|
850
|
-
./spec/models/spotlight/
|
851
|
-
./spec/models/spotlight/
|
852
|
-
./spec/models/spotlight/
|
853
|
-
./spec/models/spotlight/
|
854
|
-
./spec/models/spotlight/
|
855
|
-
./spec/models/spotlight/
|
856
|
-
./spec/models/spotlight/
|
857
|
-
./spec/models/spotlight/
|
858
|
-
./spec/models/spotlight/
|
859
|
-
./spec/models/spotlight/
|
860
|
-
./spec/models/spotlight/
|
861
|
-
./spec/models/spotlight/
|
862
|
-
./spec/models/spotlight/
|
863
|
-
./spec/models/spotlight/
|
864
|
-
./spec/models/spotlight/
|
865
|
-
./spec/models/spotlight/
|
866
|
-
./spec/models/spotlight/
|
867
|
-
./spec/models/spotlight/
|
868
|
-
./spec/models/spotlight/
|
869
|
-
./spec/models/spotlight/
|
870
|
-
./spec/models/spotlight/
|
871
|
-
./spec/models/spotlight/
|
872
|
-
./spec/models/spotlight/
|
873
|
-
./spec/models/spotlight/
|
874
|
-
./spec/models/spotlight/
|
875
|
-
./spec/models/spotlight/
|
876
|
-
./spec/models/spotlight/
|
877
|
-
./spec/models/spotlight/
|
878
|
-
./spec/models/spotlight/
|
879
|
-
./spec/models/spotlight/
|
880
|
-
./spec/models/spotlight/
|
881
|
-
./spec/models/spotlight/
|
882
|
-
./spec/models/spotlight/
|
883
|
-
./spec/models/spotlight/
|
884
|
-
./spec/models/spotlight/
|
885
|
-
./spec/models/spotlight/
|
886
|
-
./spec/models/spotlight/
|
887
|
-
./spec/models/spotlight/
|
888
|
-
./spec/models/spotlight/
|
889
|
-
./spec/models/spotlight/
|
890
|
-
./spec/models/spotlight/
|
891
|
-
./spec/models/spotlight/
|
892
|
-
./spec/models/spotlight/
|
893
|
-
./spec/models/spotlight/
|
894
|
-
./spec/models/spotlight/
|
895
|
-
./spec/models/spotlight/
|
896
|
-
./spec/models/spotlight/
|
897
|
-
./spec/models/spotlight/
|
898
|
-
./spec/models/spotlight/
|
899
|
-
./spec/models/spotlight/
|
900
|
-
./spec/models/spotlight/
|
901
|
-
./spec/models/spotlight/
|
902
|
-
./spec/models/spotlight/
|
903
|
-
./spec/models/spotlight/
|
904
|
-
./spec/models/spotlight/
|
905
|
-
./spec/models/spotlight/
|
906
|
-
./spec/models/spotlight/
|
907
|
-
./spec/models/spotlight/
|
908
|
-
./spec/models/spotlight/
|
909
|
-
./spec/models/spotlight/
|
910
|
-
./spec/models/spotlight/
|
911
|
-
./spec/models/spotlight/
|
912
|
-
./spec/models/spotlight/
|
913
|
-
./spec/models/spotlight/
|
914
|
-
./spec/models/spotlight/
|
915
|
-
./spec/models/spotlight/
|
916
|
-
./spec/models/spotlight/
|
917
|
-
./spec/models/spotlight/
|
918
|
-
./spec/models/spotlight/
|
919
|
-
./spec/models/spotlight/
|
920
|
-
./spec/models/spotlight/
|
921
|
-
./spec/models/spotlight/
|
922
|
-
./spec/
|
923
|
-
./spec/
|
924
|
-
./spec/
|
925
|
-
./spec/
|
926
|
-
./spec/
|
927
|
-
./spec/
|
928
|
-
./spec/
|
929
|
-
./spec/
|
930
|
-
./spec/
|
931
|
-
./spec/
|
932
|
-
./spec/
|
933
|
-
./spec/
|
934
|
-
./spec/
|
935
|
-
./spec/
|
936
|
-
./spec/
|
937
|
-
./spec/
|
938
|
-
./spec/
|
939
|
-
./spec/
|
940
|
-
./spec/
|
941
|
-
./spec/
|
942
|
-
./spec/
|
943
|
-
./spec/
|
944
|
-
./spec/
|
945
|
-
./spec/
|
946
|
-
./spec/
|
947
|
-
./spec/
|
948
|
-
./spec/
|
949
|
-
./spec/
|
950
|
-
./spec/
|
951
|
-
./spec/
|
952
|
-
./spec/
|
953
|
-
./spec/
|
954
|
-
./spec/
|
955
|
-
./spec/
|
956
|
-
./spec/
|
957
|
-
./spec/
|
958
|
-
./spec/
|
959
|
-
./spec/
|
960
|
-
./spec/
|
961
|
-
./spec/
|
962
|
-
./spec/
|
963
|
-
./spec/
|
964
|
-
./spec/
|
965
|
-
./spec/
|
966
|
-
./spec/
|
967
|
-
./spec/
|
968
|
-
./spec/
|
969
|
-
./spec/
|
970
|
-
./spec/
|
971
|
-
./spec/
|
972
|
-
./spec/
|
973
|
-
./spec/
|
974
|
-
./spec/
|
975
|
-
./spec/
|
976
|
-
./spec/
|
977
|
-
./spec/
|
978
|
-
./spec/
|
979
|
-
./spec/
|
980
|
-
./spec/
|
981
|
-
./spec/
|
982
|
-
./spec/
|
983
|
-
./spec/
|
984
|
-
./spec/
|
985
|
-
./spec/
|
986
|
-
./spec/
|
987
|
-
./spec/
|
988
|
-
./spec/
|
989
|
-
./spec/
|
990
|
-
./spec/
|
991
|
-
./spec/
|
992
|
-
./spec/
|
993
|
-
./spec/
|
994
|
-
./spec/
|
995
|
-
./spec/
|
996
|
-
./spec/
|
997
|
-
./spec/
|
998
|
-
./spec/
|
999
|
-
./spec/
|
1000
|
-
./spec/
|
1001
|
-
./spec/
|
1002
|
-
./spec/
|
1003
|
-
./spec/
|
1004
|
-
./spec/
|
1005
|
-
./spec/
|
1006
|
-
./spec/
|
1007
|
-
./spec/
|
1008
|
-
./spec/
|
1009
|
-
./spec/
|
1010
|
-
./spec/
|
1011
|
-
./spec/
|
1012
|
-
./spec/
|
1013
|
-
./spec/
|
1014
|
-
./spec/
|
1015
|
-
./spec/
|
1016
|
-
./spec/
|
1017
|
-
./spec/
|
1018
|
-
./spec/
|
1019
|
-
./spec/
|
1020
|
-
./spec/
|
1021
|
-
./spec/
|
1022
|
-
./spec/
|
1023
|
-
./spec/
|
1024
|
-
./spec/
|
1025
|
-
./spec/
|
1026
|
-
./spec/
|
1027
|
-
./spec/
|
1028
|
-
./spec/
|
1029
|
-
./spec/
|
1030
|
-
./spec/
|
1031
|
-
./spec/
|
1032
|
-
./spec/
|
1033
|
-
./spec/
|
1034
|
-
./spec/
|
1035
|
-
./spec/
|
1036
|
-
./spec/
|
1037
|
-
./spec/
|
1038
|
-
./spec/
|
1039
|
-
./spec/
|
1040
|
-
./spec/
|
1041
|
-
./spec/
|
1042
|
-
./spec/
|
1043
|
-
./spec/
|
1044
|
-
./spec/
|
1045
|
-
./spec/
|
1046
|
-
./spec/
|
1047
|
-
./spec/
|
1048
|
-
./spec/
|
1049
|
-
./spec/
|
1050
|
-
./spec/
|
1051
|
-
./spec/
|
1052
|
-
./spec/
|
1053
|
-
./spec/
|
1054
|
-
./spec/
|
1055
|
-
./spec/
|
1056
|
-
./spec/
|
1057
|
-
./spec/
|
1058
|
-
./spec/
|
1059
|
-
./spec/
|
1060
|
-
./spec/
|
1061
|
-
./spec/
|
1062
|
-
./spec/
|
1063
|
-
./spec/
|
1064
|
-
./spec/
|
1065
|
-
./spec/
|
1066
|
-
./spec/
|
1067
|
-
./spec/
|
1068
|
-
./spec/
|
1069
|
-
./spec/
|
1070
|
-
./spec/
|
1071
|
-
./spec/
|
1072
|
-
./spec/
|
1073
|
-
./spec/
|
1074
|
-
./spec/
|
1075
|
-
./spec/
|
1076
|
-
./spec/
|
1077
|
-
./spec/
|
1078
|
-
./spec/
|
1079
|
-
./spec/
|
1080
|
-
./spec/
|
1081
|
-
./spec/
|
1082
|
-
./spec/
|
1083
|
-
./spec/
|
1084
|
-
./spec/
|
1085
|
-
./spec/
|
1086
|
-
./spec/
|
1087
|
-
./spec/
|
1088
|
-
./spec/
|
1089
|
-
./spec/
|
1090
|
-
./spec/
|
1091
|
-
./spec/
|
1092
|
-
./spec/
|
1093
|
-
./spec/
|
1094
|
-
./spec/
|
1095
|
-
./spec/
|
1096
|
-
./spec/
|
1097
|
-
./spec/
|
1098
|
-
./spec/
|
1099
|
-
./spec/
|
1100
|
-
./spec/
|
1101
|
-
./spec/
|
1102
|
-
./spec/
|
1103
|
-
./spec/
|
1104
|
-
./spec/
|
1105
|
-
./spec/
|
1106
|
-
./spec/
|
1107
|
-
./spec/
|
1108
|
-
./spec/views/
|
1109
|
-
./spec/views/
|
1110
|
-
./spec/views/
|
1111
|
-
./spec/views/
|
1112
|
-
./spec/views/
|
1113
|
-
./spec/views/
|
1114
|
-
./spec/views/
|
1115
|
-
./spec/views/
|
1116
|
-
./spec/views/
|
1117
|
-
./spec/views/
|
1118
|
-
./spec/views/
|
1119
|
-
./spec/views/
|
1120
|
-
./spec/views/
|
1121
|
-
./spec/views/
|
1122
|
-
./spec/views/
|
1123
|
-
./spec/views/
|
1124
|
-
./spec/views/
|
1125
|
-
./spec/views/
|
1126
|
-
./spec/views/
|
1127
|
-
./spec/views/
|
1128
|
-
./spec/views/
|
1129
|
-
./spec/views/
|
1130
|
-
./spec/views/
|
1131
|
-
./spec/views/
|
1132
|
-
./spec/views/
|
1133
|
-
./spec/views/
|
1134
|
-
./spec/views/
|
1135
|
-
./spec/views/
|
1136
|
-
./spec/views/
|
1137
|
-
./spec/views/
|
1138
|
-
./spec/views/
|
1139
|
-
./spec/views/
|
1140
|
-
./spec/views/
|
1141
|
-
./spec/views/
|
1142
|
-
./spec/views/
|
1143
|
-
./spec/views/spotlight/
|
1144
|
-
./spec/views/spotlight/
|
1145
|
-
./spec/views/spotlight/
|
1146
|
-
./spec/views/spotlight/
|
1147
|
-
./spec/views/spotlight/
|
1148
|
-
./spec/views/spotlight/
|
1149
|
-
./spec/views/spotlight/
|
1150
|
-
./spec/views/spotlight/
|
1151
|
-
./spec/views/spotlight/
|
1152
|
-
./spec/views/spotlight/
|
1153
|
-
./spec/views/spotlight/
|
1154
|
-
./spec/views/spotlight/
|
1155
|
-
./spec/views/spotlight/
|
1156
|
-
./spec/views/spotlight/
|
1157
|
-
./spec/views/spotlight/
|
1158
|
-
./spec/views/spotlight/
|
1159
|
-
./spec/views/spotlight/
|
1160
|
-
./spec/views/spotlight/
|
1161
|
-
./spec/views/spotlight/
|
1162
|
-
./spec/views/spotlight/
|
1163
|
-
./spec/views/spotlight/
|
1164
|
-
./spec/views/spotlight/
|
1165
|
-
./spec/views/spotlight/
|
1166
|
-
./spec/views/spotlight/
|
1167
|
-
./spec/views/spotlight/
|
1168
|
-
./spec/views/spotlight/
|
1169
|
-
./spec/views/spotlight/
|
1170
|
-
./spec/views/spotlight/
|
1171
|
-
./spec/views/spotlight/
|
1172
|
-
./spec/views/spotlight/
|
1173
|
-
./spec/views/spotlight/
|
1174
|
-
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.32948 seconds |
|
1175
|
-
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.1026 seconds |
|
1176
|
-
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.1026 seconds |
|
1177
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.01152 seconds |
|
1178
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.11016 seconds |
|
1179
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.45036 seconds |
|
1180
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.37282 seconds |
|
1181
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.30901 seconds |
|
1182
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.34085 seconds |
|
1183
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.37828 seconds |
|
1184
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.30093 seconds |
|
1185
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.32499 seconds |
|
1186
|
-
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.13975 seconds |
|
1187
|
-
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.1028 seconds |
|
1188
|
-
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.36395 seconds |
|
1189
|
-
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.38679 seconds |
|
1190
|
-
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.09093 seconds |
|
1191
|
-
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.17098 seconds |
|
1192
|
-
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.08584 seconds |
|
1193
|
-
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.11036 seconds |
|
1194
|
-
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:1:1] | passed | 0.33151 seconds |
|
1195
|
-
./spec/views/spotlight/exhibits/_form.html.erb_spec.rb[1:2:1] | passed | 3.35 seconds |
|
1196
|
-
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 2.75 seconds |
|
1197
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 0.39165 seconds |
|
1198
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.37953 seconds |
|
1199
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 2.17 seconds |
|
1200
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.4478 seconds |
|
1201
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 0.51125 seconds |
|
1202
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.36491 seconds |
|
1203
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.69062 seconds |
|
1204
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.57644 seconds |
|
1205
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.57996 seconds |
|
1206
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.40419 seconds |
|
1207
|
-
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02271 seconds |
|
1208
|
-
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.01682 seconds |
|
1209
|
-
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01167 seconds |
|
1210
|
-
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01267 seconds |
|
1211
|
-
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.20351 seconds |
|
1212
|
-
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.2228 seconds |
|
1213
|
-
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.19798 seconds |
|
1214
|
-
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.21992 seconds |
|
1215
|
-
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.03327 seconds |
|
1216
|
-
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.26652 seconds |
|
1217
|
-
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.42326 seconds |
|
1218
|
-
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.84436 seconds |
|
1219
|
-
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.12164 seconds |
|
1220
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 2.93 seconds |
|
1221
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.0312 seconds |
|
1222
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.03159 seconds |
|
1223
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.02553 seconds |
|
1224
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.03542 seconds |
|
1225
|
-
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.35803 seconds |
|
1226
|
-
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 1.38 seconds |
|
1227
|
-
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.65014 seconds |
|
1228
|
-
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 1.01 seconds |
|
1229
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.03117 seconds |
|
1230
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.02579 seconds |
|
1231
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02906 seconds |
|
1232
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.04924 seconds |
|
1233
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.03128 seconds |
|
1234
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.63301 seconds |
|
1235
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.30123 seconds |
|
1236
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02158 seconds |
|
1237
|
-
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.03442 seconds |
|
1238
|
-
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.39909 seconds |
|
1239
|
-
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.06193 seconds |
|
1240
|
-
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 3.72 seconds |
|
1241
|
-
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.12483 seconds |
|
1242
|
-
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.12953 seconds |
|
1243
|
-
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.10445 seconds |
|
1244
|
-
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.1714 seconds |
|
1245
|
-
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 2.61 seconds |
|
1246
|
-
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.16498 seconds |
|
1247
|
-
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.16464 seconds |
|
1248
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.12202 seconds |
|
1249
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.11899 seconds |
|
1250
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.12103 seconds |
|
1251
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.16824 seconds |
|
1252
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.12967 seconds |
|
1253
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.12681 seconds |
|
1254
|
-
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.21943 seconds |
|
1255
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.11627 seconds |
|
1256
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.2078 seconds |
|
1257
|
-
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.1068 seconds |
|
1258
|
-
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 1.32 seconds |
|
1259
|
-
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.21181 seconds |
|
1260
|
-
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 1.1 seconds |
|
1261
|
-
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.16836 seconds |
|
1262
|
-
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.4194 seconds |
|
1263
|
-
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.60808 seconds |
|
1264
|
-
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.01506 seconds |
|
1265
|
-
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.12638 seconds |
|
1266
|
-
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.55465 seconds |
|
1267
|
-
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.12538 seconds |
|
1268
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.13426 seconds |
|
1269
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.1169 seconds |
|
1270
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.12201 seconds |
|
1271
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.12052 seconds |
|
1272
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.01629 seconds |
|
1273
|
-
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.13679 seconds |
|
1274
|
-
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.12892 seconds |
|
1275
|
-
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.72146 seconds |
|
1276
|
-
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | failed | 0.15311 seconds |
|
1277
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:1] | passed | 0.26662 seconds |
|
1278
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:1] | passed | 0.29294 seconds |
|
1279
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:2] | passed | 0.12058 seconds |
|
1280
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:3:1] | passed | 0.11801 seconds |
|
1281
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:2:4:1] | passed | 0.11397 seconds |
|
1282
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:1] | passed | 0.10658 seconds |
|
1283
|
-
./spec/views/spotlight/translations/_page.html.erb_spec.rb[1:3:2] | passed | 0.11205 seconds |
|
3
|
+
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.07966 seconds |
|
4
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:1:1] | passed | 0.41694 seconds |
|
5
|
+
./spec/controllers/application_controller_spec.rb[1:2:1:2:1] | passed | 0.05876 seconds |
|
6
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:1:1:1] | passed | 0.10314 seconds |
|
7
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:1:1] | passed | 0.30458 seconds |
|
8
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:1:2:1] | passed | 0.12397 seconds |
|
9
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:1:1] | passed | 0.18911 seconds |
|
10
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:2:2:1] | passed | 0.15075 seconds |
|
11
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:3:1] | passed | 0.16212 seconds |
|
12
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:4:1] | passed | 0.11437 seconds |
|
13
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:5:1] | passed | 0.14579 seconds |
|
14
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:6:1] | passed | 0.18346 seconds |
|
15
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:1] | passed | 0.18354 seconds |
|
16
|
+
./spec/controllers/spotlight/about_pages_controller_spec.rb[1:2:7:2] | passed | 0.11817 seconds |
|
17
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:1:1] | passed | 0.02456 seconds |
|
18
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:1:1] | passed | 0.04072 seconds |
|
19
|
+
./spec/controllers/spotlight/admin_users_controller_spec.rb[1:2:2:1] | passed | 0.02667 seconds |
|
20
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:1:1:1] | passed | 0.08484 seconds |
|
21
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:2:1:1] | passed | 0.0574 seconds |
|
22
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:1:1] | passed | 0.08269 seconds |
|
23
|
+
./spec/controllers/spotlight/appearances_controller_spec.rb[1:3:2:1] | passed | 0.10236 seconds |
|
24
|
+
./spec/controllers/spotlight/application_controller_spec.rb[1:1] | passed | 0.05396 seconds |
|
25
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:1:1:1] | passed | 0.05534 seconds |
|
26
|
+
./spec/controllers/spotlight/attachments_controller_spec.rb[1:2:1:1] | passed | 0.10526 seconds |
|
27
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:1] | passed | 0.08464 seconds |
|
28
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:2] | passed | 0.08913 seconds |
|
29
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:3] | passed | 0.08146 seconds |
|
30
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:4] | passed | 0.09899 seconds |
|
31
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:1:5] | passed | 0.08114 seconds |
|
32
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:2:1:1] | passed | 0.11741 seconds |
|
33
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:1:1] | passed | 0.09021 seconds |
|
34
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:1] | passed | 0.12754 seconds |
|
35
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:2] | passed | 0.09877 seconds |
|
36
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:3] | passed | 0.09256 seconds |
|
37
|
+
./spec/controllers/spotlight/browse_controller_spec.rb[1:3:2:4] | passed | 0.37252 seconds |
|
38
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:1] | passed | 0.01062 seconds |
|
39
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:2] | passed | 0.00886 seconds |
|
40
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:3:1] | passed | 0.0107 seconds |
|
41
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:1:1] | passed | 0.05744 seconds |
|
42
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:2:1] | passed | 0.05965 seconds |
|
43
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:1] | passed | 0.20755 seconds |
|
44
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:2] | passed | 0.08762 seconds |
|
45
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:3] | passed | 0.08958 seconds |
|
46
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:4] | passed | 0.1227 seconds |
|
47
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:5] | passed | 0.0699 seconds |
|
48
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:3:6] | passed | 0.07185 seconds |
|
49
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:1] | passed | 0.2436 seconds |
|
50
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:4:2] | passed | 0.07492 seconds |
|
51
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:1] | passed | 0.16119 seconds |
|
52
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:5:2] | passed | 0.12206 seconds |
|
53
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:1:1] | passed | 0.34424 seconds |
|
54
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:4:6:2:1] | passed | 0.07213 seconds |
|
55
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:1:1] | passed | 0.06224 seconds |
|
56
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:2:1] | passed | 0.06804 seconds |
|
57
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:3:1] | passed | 0.08279 seconds |
|
58
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:4:1] | passed | 0.07537 seconds |
|
59
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:5:5:1] | passed | 0.07141 seconds |
|
60
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:1] | passed | 0.16523 seconds |
|
61
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:2] | passed | 0.1554 seconds |
|
62
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:3:1] | passed | 0.11885 seconds |
|
63
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:1] | passed | 0.18119 seconds |
|
64
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:2] | passed | 0.23472 seconds |
|
65
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:4:3] | passed | 0.14945 seconds |
|
66
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:5:1] | passed | 0.10284 seconds |
|
67
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:6:6:1] | passed | 0.09608 seconds |
|
68
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:7:1:1] | passed | 0.09375 seconds |
|
69
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:1] | passed | 0.05658 seconds |
|
70
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:2] | passed | 0.07025 seconds |
|
71
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:8:3:1] | passed | 0.07362 seconds |
|
72
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:1:1] | passed | 0.08724 seconds |
|
73
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:1:2:1] | passed | 0.08912 seconds |
|
74
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:1:1] | pending | 0.1098 seconds |
|
75
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:9:2:2:1] | passed | 0.08952 seconds |
|
76
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:1:1] | passed | 0.01415 seconds |
|
77
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:2:1] | passed | 0.01496 seconds |
|
78
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:3] | passed | 0.08011 seconds |
|
79
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:4] | passed | 0.08198 seconds |
|
80
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:10:5] | passed | 0.08461 seconds |
|
81
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:1] | passed | 0.01663 seconds |
|
82
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:2] | passed | 0.0151 seconds |
|
83
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:11:3] | passed | 0.01461 seconds |
|
84
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:1] | passed | 0.08019 seconds |
|
85
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:2] | passed | 0.07733 seconds |
|
86
|
+
./spec/controllers/spotlight/catalog_controller_spec.rb[1:12:1:3] | passed | 0.0838 seconds |
|
87
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:1:1] | passed | 0.07758 seconds |
|
88
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:1:1] | passed | 0.0179 seconds |
|
89
|
+
./spec/controllers/spotlight/confirmations_controller_spec.rb[1:2:2:1] | passed | 0.97453 seconds |
|
90
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:1:1:1] | passed | 0.0888 seconds |
|
91
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:1:1:1] | passed | 0.08475 seconds |
|
92
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:2:1:1] | passed | 0.08962 seconds |
|
93
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:1] | passed | 0.06894 seconds |
|
94
|
+
./spec/controllers/spotlight/contact_email_controller_spec.rb[1:2:3:1:2] | passed | 0.06963 seconds |
|
95
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:1] | passed | 0.22191 seconds |
|
96
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:2] | passed | 0.10485 seconds |
|
97
|
+
./spec/controllers/spotlight/contact_forms_controller_spec.rb[1:1:3] | passed | 0.14124 seconds |
|
98
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:1:1:1] | passed | 0.10135 seconds |
|
99
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:1:1] | passed | 0.13606 seconds |
|
100
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:1] | passed | 0.08322 seconds |
|
101
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:2] | passed | 0.1154 seconds |
|
102
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:2:3] | passed | 0.09738 seconds |
|
103
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:3:1] | passed | 0.08541 seconds |
|
104
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:4:1] | passed | 0.08575 seconds |
|
105
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:1] | passed | 0.06625 seconds |
|
106
|
+
./spec/controllers/spotlight/contacts_controller_spec.rb[1:2:5:2] | passed | 0.07686 seconds |
|
107
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:1:1] | passed | 0.08814 seconds |
|
108
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:2:1] | passed | 0.1009 seconds |
|
109
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:1] | passed | 0.09766 seconds |
|
110
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:1:2] | passed | 0.0753 seconds |
|
111
|
+
./spec/controllers/spotlight/custom_fields_controller_spec.rb[1:1:3:2:1] | passed | 0.07251 seconds |
|
112
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:1:1] | passed | 0.11299 seconds |
|
113
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:1:2:1] | passed | 0.10513 seconds |
|
114
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:1] | passed | 0.07512 seconds |
|
115
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:2:2] | passed | 0.06955 seconds |
|
116
|
+
./spec/controllers/spotlight/dashboards_controller_spec.rb[1:3:1:1] | passed | 0.05681 seconds |
|
117
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:1:1:1] | passed | 0.06689 seconds |
|
118
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:1:1] | passed | 0.049 seconds |
|
119
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:2:1] | passed | 0.05504 seconds |
|
120
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:3:1] | passed | 0.0718 seconds |
|
121
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:4:1] | passed | 0.05443 seconds |
|
122
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:5:1] | passed | 0.06247 seconds |
|
123
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:2:6:1] | passed | 0.05973 seconds |
|
124
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:1:1] | passed | 0.04238 seconds |
|
125
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:3:2:1] | passed | 0.36993 seconds |
|
126
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:1:1] | passed | 0.06832 seconds |
|
127
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:2:1] | passed | 0.07057 seconds |
|
128
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:3:1] | passed | 0.08048 seconds |
|
129
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:1] | passed | 0.08428 seconds |
|
130
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:4:2] | passed | 0.09212 seconds |
|
131
|
+
./spec/controllers/spotlight/exhibits_controller_spec.rb[1:4:5:1] | passed | 0.10644 seconds |
|
132
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:1:1] | passed | 0.17644 seconds |
|
133
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:1:1] | passed | 0.16742 seconds |
|
134
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:2:2:1] | passed | 0.11496 seconds |
|
135
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:3:1] | passed | 0.13572 seconds |
|
136
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:4:1] | passed | 0.15152 seconds |
|
137
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:1] | passed | 0.09575 seconds |
|
138
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:2] | passed | 0.09954 seconds |
|
139
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:1:3] | passed | 0.10489 seconds |
|
140
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:1] | passed | 0.0856 seconds |
|
141
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:5:2:2] | passed | 0.08861 seconds |
|
142
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:1] | passed | 0.10961 seconds |
|
143
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:2] | passed | 0.1239 seconds |
|
144
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:1:3] | passed | 0.12756 seconds |
|
145
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:1] | passed | 0.10658 seconds |
|
146
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:6:2:2] | passed | 0.10481 seconds |
|
147
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:7:1] | passed | 0.1402 seconds |
|
148
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:1] | passed | 0.10636 seconds |
|
149
|
+
./spec/controllers/spotlight/feature_pages_controller_spec.rb[1:1:8:2] | passed | 0.09736 seconds |
|
150
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:1:1:1] | passed | 0.02834 seconds |
|
151
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:1:1] | passed | 0.03855 seconds |
|
152
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:2:1] | passed | 0.04052 seconds |
|
153
|
+
./spec/controllers/spotlight/featured_images_controller_spec.rb[1:2:3:1] | passed | 0.04274 seconds |
|
154
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:1:1] | passed | 0.06711 seconds |
|
155
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:1] | passed | 0.08343 seconds |
|
156
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:1:2:2] | passed | 0.11727 seconds |
|
157
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:1:1] | passed | 0.05778 seconds |
|
158
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:1] | passed | 0.08076 seconds |
|
159
|
+
./spec/controllers/spotlight/filters_controller_spec.rb[1:2:2:2] | passed | 0.07293 seconds |
|
160
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:1:1] | passed | 0.08855 seconds |
|
161
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:1:2] | passed | 0.13162 seconds |
|
162
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:1:2:1] | passed | 0.10514 seconds |
|
163
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:1] | passed | 0.10005 seconds |
|
164
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:2] | passed | 0.06997 seconds |
|
165
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:3] | passed | 0.09465 seconds |
|
166
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:1] | passed | 0.09007 seconds |
|
167
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:2] | passed | 0.15068 seconds |
|
168
|
+
./spec/controllers/spotlight/home_pages_controller_spec.rb[1:2:4:3] | passed | 0.1288 seconds |
|
169
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06774 seconds |
|
170
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:1:2:1] | passed | 0.06939 seconds |
|
171
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05696 seconds |
|
172
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:2:2:1] | passed | 0.05269 seconds |
|
173
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:1:1] | passed | 0.08941 seconds |
|
174
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:2:1] | passed | 0.0794 seconds |
|
175
|
+
./spec/controllers/spotlight/metadata_configurations_controller_spec.rb[1:3:3:1] | passed | 0.07985 seconds |
|
176
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:1:1:1] | passed | 0.05328 seconds |
|
177
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:1] | passed | 0.07748 seconds |
|
178
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:2] | passed | 0.06886 seconds |
|
179
|
+
./spec/controllers/spotlight/resources/csv_upload_controller_spec.rb[1:2:1:3] | passed | 0.06586 seconds |
|
180
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:1:1:1] | passed | 0.05451 seconds |
|
181
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:1] | passed | 0.0845 seconds |
|
182
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:2] | passed | 0.09109 seconds |
|
183
|
+
./spec/controllers/spotlight/resources/upload_controller_spec.rb[1:2:1:3] | passed | 0.10314 seconds |
|
184
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:1:1] | passed | 0.05669 seconds |
|
185
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:2:1] | passed | 0.05768 seconds |
|
186
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:3:1] | passed | 0.05137 seconds |
|
187
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:1:4:1] | passed | 0.05491 seconds |
|
188
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:1:1] | passed | 0.08834 seconds |
|
189
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:2:1] | passed | 0.07211 seconds |
|
190
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:1] | passed | 0.08728 seconds |
|
191
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:3:2] | passed | 0.08448 seconds |
|
192
|
+
./spec/controllers/spotlight/resources_controller_spec.rb[1:2:4:1] | passed | 0.07516 seconds |
|
193
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:1:1:1] | passed | 0.07076 seconds |
|
194
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:1] | passed | 0.09785 seconds |
|
195
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:1] | passed | 0.07991 seconds |
|
196
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:2] | passed | 0.39539 seconds |
|
197
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:3] | passed | 0.07639 seconds |
|
198
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:4] | passed | 0.07088 seconds |
|
199
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:5] | passed | 0.07234 seconds |
|
200
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:6] | passed | 0.07889 seconds |
|
201
|
+
./spec/controllers/spotlight/roles_controller_spec.rb[1:2:2:7] | passed | 0.07062 seconds |
|
202
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:1:1:1] | passed | 0.06145 seconds |
|
203
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:1:1] | passed | 0.05557 seconds |
|
204
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:2:2:1] | passed | 0.05125 seconds |
|
205
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:1] | passed | 0.09411 seconds |
|
206
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:1:2] | passed | 0.07677 seconds |
|
207
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:1] | passed | 0.07718 seconds |
|
208
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:2] | passed | 0.0798 seconds |
|
209
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:3] | passed | 0.08299 seconds |
|
210
|
+
./spec/controllers/spotlight/search_configurations_controller_spec.rb[1:3:2:4] | passed | 0.14577 seconds |
|
211
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:1:1] | passed | 0.09849 seconds |
|
212
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:1:2:1] | passed | 0.14683 seconds |
|
213
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:1] | passed | 0.15688 seconds |
|
214
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:1] | passed | 0.17365 seconds |
|
215
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:2:2] | passed | 0.16635 seconds |
|
216
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:1] | pending | 0.15675 seconds |
|
217
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:3:2] | passed | 0.17452 seconds |
|
218
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:4:1] | passed | 0.14847 seconds |
|
219
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:1] | passed | 0.10309 seconds |
|
220
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:5:2] | passed | 0.08764 seconds |
|
221
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:6:1] | passed | 0.08895 seconds |
|
222
|
+
./spec/controllers/spotlight/searches_controller_spec.rb[1:2:7:1] | passed | 0.12294 seconds |
|
223
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:1:1:1] | passed | 0.02382 seconds |
|
224
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:1:1] | passed | 0.04118 seconds |
|
225
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:2:1] | passed | 0.04217 seconds |
|
226
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:3:1] | passed | 0.1205 seconds |
|
227
|
+
./spec/controllers/spotlight/sites_controller_spec.rb[1:2:4:1] | passed | 0.10859 seconds |
|
228
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:1:1:1] | passed | 0.07608 seconds |
|
229
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:1] | passed | 0.15196 seconds |
|
230
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:2:1] | passed | 0.08381 seconds |
|
231
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:3] | passed | 0.11469 seconds |
|
232
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:4] | passed | 0.1039 seconds |
|
233
|
+
./spec/controllers/spotlight/solr_controller_spec.rb[1:2:1:5:1] | passed | 0.08967 seconds |
|
234
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:1:1:1] | passed | 0.09489 seconds |
|
235
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:1] | passed | 0.1131 seconds |
|
236
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:1:2] | passed | 0.08226 seconds |
|
237
|
+
./spec/controllers/spotlight/tags_controller_spec.rb[1:2:2:1] | passed | 0.0888 seconds |
|
238
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:1:1:1] | passed | 0.01343 seconds |
|
239
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:2:1:1] | passed | 0.09014 seconds |
|
240
|
+
./spec/controllers/spotlight/versions_controller_spec.rb[1:3:1:1] | passed | 0.11908 seconds |
|
241
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:1:1:1] | passed | 0.07104 seconds |
|
242
|
+
./spec/controllers/spotlight/view_configurations_controller_spec.rb[1:2:1:1] | passed | 0.08738 seconds |
|
243
|
+
./spec/features/about_page_spec.rb[1:1:1] | passed | 27.87 seconds |
|
244
|
+
./spec/features/about_page_spec.rb[1:2:1:1] | passed | 0.44741 seconds |
|
245
|
+
./spec/features/add_contacts_spec.rb[1:1] | passed | 0.74515 seconds |
|
246
|
+
./spec/features/add_contacts_spec.rb[1:2] | pending | 0.07337 seconds |
|
247
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:1] | passed | 3.67 seconds |
|
248
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:2:1] | passed | 0.31013 seconds |
|
249
|
+
./spec/features/add_custom_field_metadata_spec.rb[1:3] | passed | 0.77453 seconds |
|
250
|
+
./spec/features/add_iiif_manifest_spec.rb[1:1] | passed | 2.23 seconds |
|
251
|
+
./spec/features/add_iiif_manifest_spec.rb[1:2] | passed | 0.47138 seconds |
|
252
|
+
./spec/features/add_iiif_manifest_spec.rb[1:3] | passed | 0.36844 seconds |
|
253
|
+
./spec/features/add_items_spec.rb[1:1:1] | passed | 0.15 seconds |
|
254
|
+
./spec/features/add_items_spec.rb[1:1:2] | passed | 0.46734 seconds |
|
255
|
+
./spec/features/add_items_spec.rb[1:1:3] | passed | 0.11636 seconds |
|
256
|
+
./spec/features/add_items_spec.rb[1:1:4] | passed | 0.11362 seconds |
|
257
|
+
./spec/features/add_items_spec.rb[1:1:5:1] | passed | 0.14015 seconds |
|
258
|
+
./spec/features/add_items_spec.rb[1:2:1] | passed | 0.90329 seconds |
|
259
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:1] | passed | 5.15 seconds |
|
260
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:2] | passed | 2.83 seconds |
|
261
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:1:3] | passed | 1.61 seconds |
|
262
|
+
./spec/features/autocomplete_typeahead_spec.rb[1:1:2:1] | passed | 0.87714 seconds |
|
263
|
+
./spec/features/browse_category_admin_spec.rb[1:1:1] | passed | 0.18128 seconds |
|
264
|
+
./spec/features/browse_category_admin_spec.rb[1:2:1] | passed | 1.39 seconds |
|
265
|
+
./spec/features/browse_category_admin_spec.rb[1:2:2] | passed | 1.07 seconds |
|
266
|
+
./spec/features/browse_category_admin_spec.rb[1:3:1] | passed | 0.23676 seconds |
|
267
|
+
./spec/features/browse_category_admin_spec.rb[1:3:2] | passed | 0.28219 seconds |
|
268
|
+
./spec/features/browse_category_admin_spec.rb[1:3:3] | passed | 0.25064 seconds |
|
269
|
+
./spec/features/browse_category_admin_spec.rb[1:3:4] | passed | 0.232 seconds |
|
270
|
+
./spec/features/browse_category_admin_spec.rb[1:3:5] | passed | 0.22983 seconds |
|
271
|
+
./spec/features/browse_category_admin_spec.rb[1:4:1] | pending | 0.07979 seconds |
|
272
|
+
./spec/features/browse_category_spec.rb[1:1:1:1] | passed | 0.20771 seconds |
|
273
|
+
./spec/features/browse_category_spec.rb[1:1:1:2] | passed | 0.12343 seconds |
|
274
|
+
./spec/features/browse_category_spec.rb[1:1:1:3] | passed | 0.12691 seconds |
|
275
|
+
./spec/features/browse_category_spec.rb[1:1:2:1] | passed | 0.14529 seconds |
|
276
|
+
./spec/features/browse_category_spec.rb[1:1:2:2] | passed | 0.12883 seconds |
|
277
|
+
./spec/features/browse_category_spec.rb[1:1:2:3] | passed | 0.13602 seconds |
|
278
|
+
./spec/features/browse_category_spec.rb[1:1:3:1] | passed | 0.62408 seconds |
|
279
|
+
./spec/features/browse_category_spec.rb[1:1:4:1] | passed | 0.14374 seconds |
|
280
|
+
./spec/features/browse_category_spec.rb[1:1:5:1] | passed | 0.23385 seconds |
|
281
|
+
./spec/features/browse_category_spec.rb[1:1:6:1] | passed | 0.24659 seconds |
|
282
|
+
./spec/features/browse_category_spec.rb[1:1:7] | passed | 0.66103 seconds |
|
283
|
+
./spec/features/catalog_spec.rb[1:1:1] | passed | 0.69306 seconds |
|
284
|
+
./spec/features/catalog_spec.rb[1:2] | passed | 0.11149 seconds |
|
285
|
+
./spec/features/catalog_spec.rb[1:3:1] | passed | 0.13494 seconds |
|
286
|
+
./spec/features/catalog_spec.rb[1:4:1] | passed | 0.19754 seconds |
|
287
|
+
./spec/features/confirm_email_spec.rb[1:1] | passed | 0.34127 seconds |
|
288
|
+
./spec/features/confirm_email_spec.rb[1:2] | passed | 0.15127 seconds |
|
289
|
+
./spec/features/create_exhibit_spec.rb[1:1] | passed | 0.27461 seconds |
|
290
|
+
./spec/features/create_exhibit_spec.rb[1:2] | passed | 0.96776 seconds |
|
291
|
+
./spec/features/create_exhibit_spec.rb[1:3] | passed | 0.24922 seconds |
|
292
|
+
./spec/features/create_exhibit_spec.rb[1:4] | passed | 0.27918 seconds |
|
293
|
+
./spec/features/create_page_spec.rb[1:1:1] | passed | 0.32789 seconds |
|
294
|
+
./spec/features/dashboard_spec.rb[1:1] | passed | 0.22652 seconds |
|
295
|
+
./spec/features/dashboard_spec.rb[1:2] | passed | 0.20716 seconds |
|
296
|
+
./spec/features/edit_contact_spec.rb[1:1] | passed | 0.27121 seconds |
|
297
|
+
./spec/features/edit_search_fields_spec.rb[1:1:1] | passed | 0.2679 seconds |
|
298
|
+
./spec/features/edit_search_fields_spec.rb[1:1:2] | passed | 0.16847 seconds |
|
299
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:1] | passed | 0.14922 seconds |
|
300
|
+
./spec/features/edit_search_fields_spec.rb[1:1:3:2] | passed | 0.28749 seconds |
|
301
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:1] | passed | 0.13767 seconds |
|
302
|
+
./spec/features/edit_search_fields_spec.rb[1:1:4:2] | passed | 0.28417 seconds |
|
303
|
+
./spec/features/exhibit_masthead_spec.rb[1:1] | passed | 0.45688 seconds |
|
304
|
+
./spec/features/exhibit_masthead_spec.rb[1:2] | passed | 0.42277 seconds |
|
305
|
+
./spec/features/exhibit_masthead_spec.rb[1:3] | passed | 0.49439 seconds |
|
306
|
+
./spec/features/exhibit_masthead_spec.rb[1:4] | pending | 0.0619 seconds |
|
307
|
+
./spec/features/exhibit_themes_spec.rb[1:1] | passed | 0.33562 seconds |
|
308
|
+
./spec/features/exhibits/add_tags_spec.rb[1:1] | passed | 1.64 seconds |
|
309
|
+
./spec/features/exhibits/administration_spec.rb[1:1:1] | passed | 0.1934 seconds |
|
310
|
+
./spec/features/exhibits/administration_spec.rb[1:1:2] | passed | 0.13172 seconds |
|
311
|
+
./spec/features/exhibits/administration_spec.rb[1:1:3] | passed | 0.32548 seconds |
|
312
|
+
./spec/features/exhibits/administration_spec.rb[1:1:4] | passed | 1.34 seconds |
|
313
|
+
./spec/features/exhibits/administration_spec.rb[1:1:5] | passed | 1.3 seconds |
|
314
|
+
./spec/features/exhibits/administration_spec.rb[1:1:6] | passed | 0.94722 seconds |
|
315
|
+
./spec/features/exhibits/administration_spec.rb[1:1:7] | passed | 0.9047 seconds |
|
316
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:1] | passed | 0.64903 seconds |
|
317
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:2] | passed | 0.19515 seconds |
|
318
|
+
./spec/features/exhibits/custom_metadata_fields_spec.rb[1:3] | passed | 0.43205 seconds |
|
319
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:1] | passed | 0.42134 seconds |
|
320
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:2] | passed | 0.94066 seconds |
|
321
|
+
./spec/features/exhibits/edit_metadata_fields_spec.rb[1:3] | passed | 0.14225 seconds |
|
322
|
+
./spec/features/exhibits_index_spec.rb[1:1:1] | passed | 0.19206 seconds |
|
323
|
+
./spec/features/exhibits_index_spec.rb[1:1:2:1] | passed | 27.77 seconds |
|
324
|
+
./spec/features/exhibits_index_spec.rb[1:2:1] | passed | 0.14572 seconds |
|
325
|
+
./spec/features/feature_page_spec.rb[1:1:1] | passed | 0.1937 seconds |
|
326
|
+
./spec/features/feature_page_spec.rb[1:2:1:1] | passed | 0.14851 seconds |
|
327
|
+
./spec/features/feature_page_spec.rb[1:2:2:1:1] | passed | 0.1555 seconds |
|
328
|
+
./spec/features/feature_page_spec.rb[1:2:2:2:1] | passed | 0.15901 seconds |
|
329
|
+
./spec/features/feature_page_spec.rb[1:3:1:1] | passed | 0.34004 seconds |
|
330
|
+
./spec/features/feature_page_spec.rb[1:3:2:1] | passed | 0.2895 seconds |
|
331
|
+
./spec/features/feature_page_spec.rb[1:4:1] | passed | 0.22168 seconds |
|
332
|
+
./spec/features/feature_page_spec.rb[1:4:2] | passed | 2.64 seconds |
|
333
|
+
./spec/features/home_page_spec.rb[1:1] | passed | 0.31768 seconds |
|
334
|
+
./spec/features/home_page_spec.rb[1:2] | passed | 8.07 seconds |
|
335
|
+
./spec/features/home_page_spec.rb[1:3] | passed | 0.81838 seconds |
|
336
|
+
./spec/features/home_page_spec.rb[1:4] | passed | 0.23473 seconds |
|
337
|
+
./spec/features/home_page_spec.rb[1:5] | passed | 0.17942 seconds |
|
338
|
+
./spec/features/home_page_spec.rb[1:6:1:1] | passed | 1.49 seconds |
|
339
|
+
./spec/features/home_page_spec.rb[1:7:1] | passed | 0.14324 seconds |
|
340
|
+
./spec/features/import_exhibit_spec.rb[1:1] | pending | 1.23 seconds |
|
341
|
+
./spec/features/import_exhibit_spec.rb[1:2] | passed | 1.21 seconds |
|
342
|
+
./spec/features/item_admin_spec.rb[1:1:1] | passed | 0.22006 seconds |
|
343
|
+
./spec/features/item_admin_spec.rb[1:1:2] | passed | 0.2211 seconds |
|
344
|
+
./spec/features/item_admin_spec.rb[1:1:3] | passed | 0.89224 seconds |
|
345
|
+
./spec/features/item_admin_spec.rb[1:1:4] | passed | 1.86 seconds |
|
346
|
+
./spec/features/javascript/about_page_admin_spec.rb[1:1] | passed | 1.03 seconds |
|
347
|
+
./spec/features/javascript/block_controls_spec.rb[1:1] | passed | 1.95 seconds |
|
348
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:1] | pending | 2.98 seconds |
|
349
|
+
./spec/features/javascript/blocks/featured_browse_categories_block_spec.rb[1:2] | pending | 3.06 seconds |
|
350
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:1] | pending | 3.01 seconds |
|
351
|
+
./spec/features/javascript/blocks/featured_pages_block_spec.rb[1:2] | pending | 3.03 seconds |
|
352
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:1] | pending | 2.97 seconds |
|
353
|
+
./spec/features/javascript/blocks/link_to_search_block_spec.rb[1:2] | pending | 3.09 seconds |
|
354
|
+
./spec/features/javascript/blocks/rule_block_spec.rb[1:1] | passed | 1.31 seconds |
|
355
|
+
./spec/features/javascript/blocks/search_result_block_spec.rb[1:1] | pending | 2.92 seconds |
|
356
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:1] | passed | 1.27 seconds |
|
357
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:2] | passed | 1.62 seconds |
|
358
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:3] | passed | 1.87 seconds |
|
359
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:4] | passed | 2.48 seconds |
|
360
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:5] | passed | 2.36 seconds |
|
361
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:6] | passed | 1.93 seconds |
|
362
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:7] | passed | 1.83 seconds |
|
363
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:8] | passed | 0.90615 seconds |
|
364
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:9] | passed | 1.62 seconds |
|
365
|
+
./spec/features/javascript/blocks/solr_documents_block_spec.rb[1:10] | passed | 2.61 seconds |
|
366
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:1] | passed | 2.47 seconds |
|
367
|
+
./spec/features/javascript/blocks/uploaded_items_block_spec.rb[1:2] | passed | 1.15 seconds |
|
368
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:1:1] | passed | 1.75 seconds |
|
369
|
+
./spec/features/javascript/edit_in_place_spec.rb[1:2:1] | passed | 1.28 seconds |
|
370
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:1] | passed | 1.05 seconds |
|
371
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:2] | passed | 1.16 seconds |
|
372
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:3] | passed | 0.7868 seconds |
|
373
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:4] | passed | 0.87769 seconds |
|
374
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:5] | passed | 2.03 seconds |
|
375
|
+
./spec/features/javascript/feature_page_admin_spec.rb[1:6] | passed | 1.29 seconds |
|
376
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:1] | passed | 0.61356 seconds |
|
377
|
+
./spec/features/javascript/home_page_edit_spec.rb[1:2] | passed | 1.33 seconds |
|
378
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:1] | passed | 0.5996 seconds |
|
379
|
+
./spec/features/javascript/metadata_admin_spec.rb[1:1:2] | passed | 0.55516 seconds |
|
380
|
+
./spec/features/javascript/multi_image_select_spec.rb[1:1] | passed | 2.71 seconds |
|
381
|
+
./spec/features/javascript/reindex_monitor_spec.rb[1:1] | passed | 3.63 seconds |
|
382
|
+
./spec/features/javascript/roles_admin_spec.rb[1:1] | passed | 1.34 seconds |
|
383
|
+
./spec/features/javascript/roles_admin_spec.rb[1:2] | passed | 1.13 seconds |
|
384
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:1] | passed | 0.95205 seconds |
|
385
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:1:2] | passed | 1.06 seconds |
|
386
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:1] | passed | 1.42 seconds |
|
387
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:2:2] | passed | 1.44 seconds |
|
388
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:1] | passed | 1.17 seconds |
|
389
|
+
./spec/features/javascript/search_config_admin_spec.rb[1:3:2] | passed | 1.11 seconds |
|
390
|
+
./spec/features/javascript/search_context_spec.rb[1:1] | passed | 0.87281 seconds |
|
391
|
+
./spec/features/javascript/search_context_spec.rb[1:2] | passed | 0.7062 seconds |
|
392
|
+
./spec/features/javascript/search_context_spec.rb[1:3:1] | passed | 2.15 seconds |
|
393
|
+
./spec/features/main_navigation_spec.rb[1:1] | passed | 0.17106 seconds |
|
394
|
+
./spec/features/main_navigation_spec.rb[1:2] | passed | 0.13104 seconds |
|
395
|
+
./spec/features/main_navigation_spec.rb[1:3] | passed | 0.23223 seconds |
|
396
|
+
./spec/features/main_navigation_spec.rb[1:4] | passed | 0.39098 seconds |
|
397
|
+
./spec/features/main_navigation_spec.rb[1:5] | passed | 0.22588 seconds |
|
398
|
+
./spec/features/main_navigation_spec.rb[1:6] | passed | 0.16562 seconds |
|
399
|
+
./spec/features/metadata_admin_spec.rb[1:1:1] | passed | 0.14296 seconds |
|
400
|
+
./spec/features/report_a_problem_spec.rb[1:1] | passed | 0.15412 seconds |
|
401
|
+
./spec/features/report_a_problem_spec.rb[1:2:1] | passed | 0.27406 seconds |
|
402
|
+
./spec/features/report_a_problem_spec.rb[1:2:2] | passed | 1.13 seconds |
|
403
|
+
./spec/features/report_a_problem_spec.rb[1:2:3] | passed | 1.25 seconds |
|
404
|
+
./spec/features/site_admin_management_spec.rb[1:1] | passed | 0.36612 seconds |
|
405
|
+
./spec/features/site_admin_management_spec.rb[1:2:1] | passed | 0.43985 seconds |
|
406
|
+
./spec/features/site_admin_management_spec.rb[1:3] | passed | 0.95122 seconds |
|
407
|
+
./spec/features/site_admin_management_spec.rb[1:4] | passed | 0.80924 seconds |
|
408
|
+
./spec/features/site_admin_management_spec.rb[1:5] | passed | 1.89 seconds |
|
409
|
+
./spec/features/site_admin_management_spec.rb[1:6] | passed | 0.68183 seconds |
|
410
|
+
./spec/features/site_admin_management_spec.rb[1:7] | passed | 0.68597 seconds |
|
411
|
+
./spec/features/site_masthead_spec.rb[1:1] | passed | 0.17236 seconds |
|
412
|
+
./spec/features/site_masthead_spec.rb[1:2] | passed | 0.19948 seconds |
|
413
|
+
./spec/features/site_masthead_spec.rb[1:3] | passed | 0.11434 seconds |
|
414
|
+
./spec/features/site_masthead_spec.rb[1:4] | passed | 0.11257 seconds |
|
415
|
+
./spec/features/slideshow_spec.rb[1:1] | passed | 1.85 seconds |
|
416
|
+
./spec/features/translation_scope_spec.rb[1:1:1] | passed | 0.21494 seconds |
|
417
|
+
./spec/features/translation_scope_spec.rb[1:2:1] | passed | 0.0355 seconds |
|
418
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:1] | passed | 0.01701 seconds |
|
419
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:2] | passed | 0.01581 seconds |
|
420
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:1:3:1] | passed | 0.02058 seconds |
|
421
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:1:1] | passed | 0.01458 seconds |
|
422
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:2:2:1] | passed | 0.01287 seconds |
|
423
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:3:1] | passed | 0.08717 seconds |
|
424
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:1:1] | passed | 0.01242 seconds |
|
425
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:4:2:1] | passed | 0.01215 seconds |
|
426
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:1] | passed | 0.06526 seconds |
|
427
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:5:2] | passed | 0.06637 seconds |
|
428
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:1] | passed | 0.01293 seconds |
|
429
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:6:2] | passed | 0.01224 seconds |
|
430
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:7:1] | passed | 0.0199 seconds |
|
431
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:1] | passed | 0.01342 seconds |
|
432
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:2] | passed | 0.01227 seconds |
|
433
|
+
./spec/helpers/spotlight/application_helper_spec.rb[1:8:3] | passed | 0.0155 seconds |
|
434
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:1] | passed | 0.01599 seconds |
|
435
|
+
./spec/helpers/spotlight/browse_helper_spec.rb[1:2] | passed | 0.01239 seconds |
|
436
|
+
./spec/helpers/spotlight/crop_helper_spec.rb[1:1:1] | passed | 0.01218 seconds |
|
437
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:1:1] | passed | 0.01293 seconds |
|
438
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:1] | passed | 0.06827 seconds |
|
439
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:2] | passed | 0.06081 seconds |
|
440
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:2:3] | passed | 0.06783 seconds |
|
441
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:1] | passed | 0.06761 seconds |
|
442
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:2] | passed | 0.05991 seconds |
|
443
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:3:3] | passed | 0.06644 seconds |
|
444
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:1] | passed | 0.06815 seconds |
|
445
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:2] | passed | 0.06464 seconds |
|
446
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:4:3] | passed | 0.07255 seconds |
|
447
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:1] | passed | 0.07028 seconds |
|
448
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:2] | passed | 0.06456 seconds |
|
449
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:5:3] | passed | 0.067 seconds |
|
450
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:6:1] | passed | 0.01236 seconds |
|
451
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:1] | passed | 0.06988 seconds |
|
452
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:2] | passed | 0.01322 seconds |
|
453
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:3] | passed | 0.06619 seconds |
|
454
|
+
./spec/helpers/spotlight/crud_link_helpers_spec.rb[1:7:4] | passed | 0.0138 seconds |
|
455
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:1:1:1] | passed | 0.07333 seconds |
|
456
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:2:1:1] | passed | 0.0665 seconds |
|
457
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:3:1:1] | passed | 0.06725 seconds |
|
458
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:4:1:1] | passed | 0.01266 seconds |
|
459
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:1:5:1:1] | passed | 0.06071 seconds |
|
460
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:1:1] | passed | 0.01569 seconds |
|
461
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:2:1] | passed | 0.07633 seconds |
|
462
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:3:1] | passed | 0.07046 seconds |
|
463
|
+
./spec/helpers/spotlight/main_app_helpers_spec.rb[1:2:4:1] | passed | 0.07465 seconds |
|
464
|
+
./spec/helpers/spotlight/meta_helper_spec.rb[1:1:1] | passed | 0.06429 seconds |
|
465
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:1] | passed | 0.01604 seconds |
|
466
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:2] | passed | 0.01365 seconds |
|
467
|
+
./spec/helpers/spotlight/navbar_helper_spec.rb[1:1:3] | passed | 0.0124 seconds |
|
468
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:1] | passed | 0.07513 seconds |
|
469
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:1:2] | passed | 0.07709 seconds |
|
470
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:1] | passed | 0.07949 seconds |
|
471
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:2] | passed | 0.07652 seconds |
|
472
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:2:3] | passed | 0.07622 seconds |
|
473
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:1] | passed | 0.07762 seconds |
|
474
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:3:2] | passed | 0.07976 seconds |
|
475
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:1] | passed | 0.07933 seconds |
|
476
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:2] | passed | 0.07888 seconds |
|
477
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:1:3] | passed | 0.07481 seconds |
|
478
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:1] | passed | 0.08946 seconds |
|
479
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:2] | passed | 0.11572 seconds |
|
480
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:4:2:3] | passed | 0.10116 seconds |
|
481
|
+
./spec/helpers/spotlight/pages_helper_spec.rb[1:5:1] | passed | 0.07564 seconds |
|
482
|
+
./spec/helpers/spotlight/roles_helper_spec.rb[1:1] | passed | 0.01469 seconds |
|
483
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:1] | passed | 0.01296 seconds |
|
484
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:2] | passed | 0.01348 seconds |
|
485
|
+
./spec/helpers/spotlight/search_configurations_helper_spec.rb[1:1:3] | passed | 0.01225 seconds |
|
486
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:1] | passed | 0.01433 seconds |
|
487
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:1:2] | passed | 0.01411 seconds |
|
488
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:1] | passed | 0.01283 seconds |
|
489
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:2:2] | passed | 0.01379 seconds |
|
490
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:3:1] | passed | 0.01702 seconds |
|
491
|
+
./spec/helpers/spotlight/title_helper_spec.rb[1:4:1] | passed | 0.01494 seconds |
|
492
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:1:1] | passed | 0.06918 seconds |
|
493
|
+
./spec/jobs/spotlight/add_uploads_from_csv_spec.rb[1:2] | passed | 0.1363 seconds |
|
494
|
+
./spec/jobs/spotlight/default_thumbnail_job_spec.rb[1:1] | passed | 0.01158 seconds |
|
495
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:1] | passed | 0.12636 seconds |
|
496
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:1] | passed | 0.14709 seconds |
|
497
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:2] | passed | 0.15965 seconds |
|
498
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:3] | passed | 0.16884 seconds |
|
499
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:4] | passed | 0.15748 seconds |
|
500
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:1:2:5] | passed | 0.16572 seconds |
|
501
|
+
./spec/jobs/spotlight/reindex_job_spec.rb[1:2:1] | passed | 0.08061 seconds |
|
502
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:1] | passed | 0.08199 seconds |
|
503
|
+
./spec/jobs/spotlight/rename_sidecar_field_job_spec.rb[1:2] | passed | 0.07165 seconds |
|
504
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:1] | passed | 0.09388 seconds |
|
505
|
+
./spec/lib/migration/iiif_spec.rb[1:1:1:2] | passed | 0.09096 seconds |
|
506
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:1] | passed | 0.09284 seconds |
|
507
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:2] | passed | 0.09858 seconds |
|
508
|
+
./spec/lib/migration/iiif_spec.rb[1:1:2:3] | passed | 0.0954 seconds |
|
509
|
+
./spec/lib/migration/iiif_spec.rb[1:2:1] | passed | 0.08429 seconds |
|
510
|
+
./spec/lib/migration/iiif_spec.rb[1:3:1] | passed | 0.02615 seconds |
|
511
|
+
./spec/lib/spotlight/controller_spec.rb[1:1:1] | passed | 0.01246 seconds |
|
512
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:1] | passed | 0.01104 seconds |
|
513
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:2] | passed | 0.01103 seconds |
|
514
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:3] | passed | 0.01108 seconds |
|
515
|
+
./spec/lib/spotlight/controller_spec.rb[1:2:4] | passed | 0.01461 seconds |
|
516
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:1] | passed | 0.01235 seconds |
|
517
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:2] | passed | 0.05701 seconds |
|
518
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:3] | passed | 0.01029 seconds |
|
519
|
+
./spec/lib/spotlight/controller_spec.rb[1:3:4:1] | pending | 0.01044 seconds |
|
520
|
+
./spec/lib/spotlight/controller_spec.rb[1:4:1] | passed | 0.01241 seconds |
|
521
|
+
./spec/lib/spotlight/controller_spec.rb[1:5:1] | passed | 0.05859 seconds |
|
522
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:1] | passed | 0.15794 seconds |
|
523
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:2] | passed | 0.01414 seconds |
|
524
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:3] | passed | 0.01593 seconds |
|
525
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:4:1] | passed | 0.01415 seconds |
|
526
|
+
./spec/mailers/spotlight/indexing_complete_mailer_spec.rb[1:5] | passed | 0.01802 seconds |
|
527
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:1] | passed | 0.07169 seconds |
|
528
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:1:2] | passed | 0.09746 seconds |
|
529
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:1:1] | passed | 0.07366 seconds |
|
530
|
+
./spec/models/sir_trevor_rails/blocks/browse_block_spec.rb[1:2:2:1] | passed | 0.10132 seconds |
|
531
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:1] | passed | 0.06836 seconds |
|
532
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:1:2] | passed | 0.06393 seconds |
|
533
|
+
./spec/models/sir_trevor_rails/blocks/featured_pages_block_spec.rb[1:2:1:1] | passed | 0.06957 seconds |
|
534
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:1] | passed | 0.07532 seconds |
|
535
|
+
./spec/models/sir_trevor_rails/blocks/search_results_block_spec.rb[1:1:2] | passed | 0.06637 seconds |
|
536
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:1] | passed | 0.0698 seconds |
|
537
|
+
./spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb[1:1:2] | passed | 0.07062 seconds |
|
538
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:1] | passed | 0.0111 seconds |
|
539
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:1:2] | passed | 0.0105 seconds |
|
540
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:2:1] | passed | 0.01218 seconds |
|
541
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:1] | passed | 0.0115 seconds |
|
542
|
+
./spec/models/sir_trevor_rails/blocks/textable_spec.rb[1:3:2] | passed | 0.01112 seconds |
|
543
|
+
./spec/models/solr_document_spec.rb[1:1:1] | passed | 0.01177 seconds |
|
544
|
+
./spec/models/solr_document_spec.rb[1:2:1] | passed | 0.01119 seconds |
|
545
|
+
./spec/models/solr_document_spec.rb[1:3:1] | passed | 0.06751 seconds |
|
546
|
+
./spec/models/solr_document_spec.rb[1:4] | passed | 0.06068 seconds |
|
547
|
+
./spec/models/solr_document_spec.rb[1:5] | passed | 0.07468 seconds |
|
548
|
+
./spec/models/solr_document_spec.rb[1:6] | passed | 0.0144 seconds |
|
549
|
+
./spec/models/solr_document_spec.rb[1:7] | passed | 0.02005 seconds |
|
550
|
+
./spec/models/solr_document_spec.rb[1:8:1] | passed | 0.0161 seconds |
|
551
|
+
./spec/models/solr_document_spec.rb[1:8:2] | passed | 0.0205 seconds |
|
552
|
+
./spec/models/solr_document_spec.rb[1:9:1] | passed | 0.07359 seconds |
|
553
|
+
./spec/models/solr_document_spec.rb[1:9:2] | passed | 0.11108 seconds |
|
554
|
+
./spec/models/solr_document_spec.rb[1:10:1] | passed | 0.06132 seconds |
|
555
|
+
./spec/models/solr_document_spec.rb[1:10:2] | passed | 0.07411 seconds |
|
556
|
+
./spec/models/solr_document_spec.rb[1:11:1] | passed | 0.07796 seconds |
|
557
|
+
./spec/models/solr_document_spec.rb[1:11:2] | passed | 0.11016 seconds |
|
558
|
+
./spec/models/solr_document_spec.rb[1:11:3] | passed | 0.09565 seconds |
|
559
|
+
./spec/models/solr_document_spec.rb[1:11:4] | passed | 0.07887 seconds |
|
560
|
+
./spec/models/solr_document_spec.rb[1:12:1] | passed | 0.0608 seconds |
|
561
|
+
./spec/models/solr_document_spec.rb[1:13:1] | passed | 0.05988 seconds |
|
562
|
+
./spec/models/solr_document_spec.rb[1:14:1] | passed | 0.06574 seconds |
|
563
|
+
./spec/models/solr_document_spec.rb[1:14:2] | passed | 0.06958 seconds |
|
564
|
+
./spec/models/solr_document_spec.rb[1:15:1] | passed | 0.06134 seconds |
|
565
|
+
./spec/models/solr_document_spec.rb[1:16:1] | passed | 0.01201 seconds |
|
566
|
+
./spec/models/solr_document_spec.rb[1:16:2] | passed | 0.01218 seconds |
|
567
|
+
./spec/models/solr_document_spec.rb[1:16:3:1] | passed | 0.01236 seconds |
|
568
|
+
./spec/models/solr_document_spec.rb[1:16:3:2] | passed | 0.01548 seconds |
|
569
|
+
./spec/models/solr_document_spec.rb[1:17:1] | passed | 0.01185 seconds |
|
570
|
+
./spec/models/solr_document_spec.rb[1:17:2] | passed | 0.01489 seconds |
|
571
|
+
./spec/models/solr_document_spec.rb[1:18:1] | passed | 0.01215 seconds |
|
572
|
+
./spec/models/spotlight/ability_spec.rb[1:1:1] | passed | 0.01554 seconds |
|
573
|
+
./spec/models/spotlight/ability_spec.rb[1:1:2] | passed | 0.01788 seconds |
|
574
|
+
./spec/models/spotlight/ability_spec.rb[1:1:3] | passed | 0.01808 seconds |
|
575
|
+
./spec/models/spotlight/ability_spec.rb[1:1:4] | passed | 0.01663 seconds |
|
576
|
+
./spec/models/spotlight/ability_spec.rb[1:1:5] | passed | 0.01705 seconds |
|
577
|
+
./spec/models/spotlight/ability_spec.rb[1:1:6] | passed | 0.01626 seconds |
|
578
|
+
./spec/models/spotlight/ability_spec.rb[1:1:7] | passed | 0.01507 seconds |
|
579
|
+
./spec/models/spotlight/ability_spec.rb[1:2:1] | passed | 0.0284 seconds |
|
580
|
+
./spec/models/spotlight/ability_spec.rb[1:3:1] | passed | 0.02729 seconds |
|
581
|
+
./spec/models/spotlight/ability_spec.rb[1:3:2] | passed | 0.02966 seconds |
|
582
|
+
./spec/models/spotlight/ability_spec.rb[1:3:3] | passed | 0.04641 seconds |
|
583
|
+
./spec/models/spotlight/ability_spec.rb[1:3:4] | passed | 0.08222 seconds |
|
584
|
+
./spec/models/spotlight/ability_spec.rb[1:3:5] | passed | 0.06978 seconds |
|
585
|
+
./spec/models/spotlight/ability_spec.rb[1:3:6] | passed | 0.03507 seconds |
|
586
|
+
./spec/models/spotlight/ability_spec.rb[1:3:7] | passed | 0.03238 seconds |
|
587
|
+
./spec/models/spotlight/ability_spec.rb[1:3:8] | passed | 0.02849 seconds |
|
588
|
+
./spec/models/spotlight/ability_spec.rb[1:3:9] | passed | 0.02563 seconds |
|
589
|
+
./spec/models/spotlight/ability_spec.rb[1:4:1] | passed | 0.02854 seconds |
|
590
|
+
./spec/models/spotlight/ability_spec.rb[1:4:2] | passed | 0.04442 seconds |
|
591
|
+
./spec/models/spotlight/ability_spec.rb[1:4:3] | passed | 0.02551 seconds |
|
592
|
+
./spec/models/spotlight/ability_spec.rb[1:4:4] | passed | 0.04057 seconds |
|
593
|
+
./spec/models/spotlight/ability_spec.rb[1:4:5] | passed | 0.0344 seconds |
|
594
|
+
./spec/models/spotlight/ability_spec.rb[1:4:6] | passed | 0.02622 seconds |
|
595
|
+
./spec/models/spotlight/ability_spec.rb[1:4:7] | passed | 0.02701 seconds |
|
596
|
+
./spec/models/spotlight/ability_spec.rb[1:4:8] | passed | 0.03005 seconds |
|
597
|
+
./spec/models/spotlight/ability_spec.rb[1:4:9] | passed | 0.02208 seconds |
|
598
|
+
./spec/models/spotlight/ability_spec.rb[1:4:10] | passed | 0.02465 seconds |
|
599
|
+
./spec/models/spotlight/ability_spec.rb[1:4:11] | passed | 0.02587 seconds |
|
600
|
+
./spec/models/spotlight/ability_spec.rb[1:4:12] | passed | 0.02728 seconds |
|
601
|
+
./spec/models/spotlight/ability_spec.rb[1:4:13] | passed | 0.02298 seconds |
|
602
|
+
./spec/models/spotlight/ability_spec.rb[1:4:14] | passed | 0.0229 seconds |
|
603
|
+
./spec/models/spotlight/ability_spec.rb[1:4:15] | passed | 0.0251 seconds |
|
604
|
+
./spec/models/spotlight/ability_spec.rb[1:4:16] | passed | 0.03081 seconds |
|
605
|
+
./spec/models/spotlight/about_page_spec.rb[1:1] | passed | 0.01109 seconds |
|
606
|
+
./spec/models/spotlight/about_page_spec.rb[1:2] | passed | 0.01025 seconds |
|
607
|
+
./spec/models/spotlight/about_page_spec.rb[1:3] | passed | 0.06044 seconds |
|
608
|
+
./spec/models/spotlight/about_page_spec.rb[1:4] | passed | 0.05762 seconds |
|
609
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:1] | passed | 0.05795 seconds |
|
610
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:2] | passed | 0.06155 seconds |
|
611
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:1:3] | passed | 0.06755 seconds |
|
612
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:1:1] | passed | 0.06728 seconds |
|
613
|
+
./spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb[1:2:2:1] | passed | 0.05951 seconds |
|
614
|
+
./spec/models/spotlight/analytics/ga_spec.rb[1:1] | passed | 0.04261 seconds |
|
615
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:1] | passed | 0.04726 seconds |
|
616
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:2] | passed | 0.05616 seconds |
|
617
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:3] | passed | 0.04896 seconds |
|
618
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:1] | passed | 0.05812 seconds |
|
619
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:2] | passed | 0.05502 seconds |
|
620
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:3] | passed | 0.07023 seconds |
|
621
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:4] | passed | 0.05764 seconds |
|
622
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:5] | passed | 0.05652 seconds |
|
623
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:6] | passed | 0.06345 seconds |
|
624
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:1] | passed | 0.05834 seconds |
|
625
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:7:2] | passed | 0.05653 seconds |
|
626
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:4:8:1] | passed | 0.05891 seconds |
|
627
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:1] | passed | 0.05292 seconds |
|
628
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:2] | passed | 0.05725 seconds |
|
629
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:3] | passed | 0.05687 seconds |
|
630
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:4] | passed | 0.05773 seconds |
|
631
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:5] | passed | 0.05351 seconds |
|
632
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:6] | passed | 0.05718 seconds |
|
633
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:7] | passed | 0.0566 seconds |
|
634
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:8] | passed | 0.05827 seconds |
|
635
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:9] | passed | 0.05093 seconds |
|
636
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:10] | passed | 0.05704 seconds |
|
637
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:1] | passed | 0.05594 seconds |
|
638
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:2] | passed | 0.05492 seconds |
|
639
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:11:3] | passed | 0.05233 seconds |
|
640
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:12] | passed | 0.05138 seconds |
|
641
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:13] | passed | 0.05632 seconds |
|
642
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:14] | passed | 0.0585 seconds |
|
643
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:15] | passed | 0.07826 seconds |
|
644
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:16] | passed | 0.07182 seconds |
|
645
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:17] | passed | 0.05921 seconds |
|
646
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:5:18:1] | passed | 0.0637 seconds |
|
647
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:1:1] | passed | 0.05827 seconds |
|
648
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:2:1] | passed | 0.06154 seconds |
|
649
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:3:1] | passed | 0.05853 seconds |
|
650
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:6:1:4:1] | passed | 0.06147 seconds |
|
651
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:1] | passed | 0.05702 seconds |
|
652
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:2] | passed | 0.05107 seconds |
|
653
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:3] | passed | 0.05617 seconds |
|
654
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:7:4] | passed | 0.0546 seconds |
|
655
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:1] | passed | 0.05318 seconds |
|
656
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:2] | passed | 0.0502 seconds |
|
657
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:3] | passed | 0.0562 seconds |
|
658
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:4] | passed | 0.06481 seconds |
|
659
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:8:5] | passed | 0.05674 seconds |
|
660
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:1] | passed | 0.05352 seconds |
|
661
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:2] | passed | 0.05428 seconds |
|
662
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:3] | passed | 0.05639 seconds |
|
663
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:9:4] | passed | 0.05546 seconds |
|
664
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:1] | passed | 0.0582 seconds |
|
665
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:2] | passed | 0.0498 seconds |
|
666
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:3] | passed | 0.05865 seconds |
|
667
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:10:4] | passed | 0.05625 seconds |
|
668
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:1] | passed | 0.05557 seconds |
|
669
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:11:2] | passed | 0.05382 seconds |
|
670
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:1] | passed | 0.052 seconds |
|
671
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:12:2] | passed | 0.0548 seconds |
|
672
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:1] | passed | 0.05422 seconds |
|
673
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:13:2] | passed | 0.0562 seconds |
|
674
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:14:1] | passed | 0.05353 seconds |
|
675
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:15:1] | passed | 0.05982 seconds |
|
676
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:1] | passed | 0.06084 seconds |
|
677
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:2] | passed | 0.06546 seconds |
|
678
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:16:1:3] | passed | 0.06202 seconds |
|
679
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:1] | passed | 0.07297 seconds |
|
680
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:17:2] | passed | 0.05769 seconds |
|
681
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:1] | passed | 0.05297 seconds |
|
682
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:2] | passed | 0.05699 seconds |
|
683
|
+
./spec/models/spotlight/blacklight_configuration_spec.rb[1:18:3] | passed | 0.0516 seconds |
|
684
|
+
./spec/models/spotlight/contact_email_spec.rb[1:1] | passed | 0.01191 seconds |
|
685
|
+
./spec/models/spotlight/contact_email_spec.rb[1:2:1] | passed | 0.01116 seconds |
|
686
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:1] | passed | 0.01084 seconds |
|
687
|
+
./spec/models/spotlight/contact_email_spec.rb[1:3:2:1] | passed | 0.01539 seconds |
|
688
|
+
./spec/models/spotlight/contact_email_spec.rb[1:4:1] | passed | 0.02417 seconds |
|
689
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:1] | passed | 0.01251 seconds |
|
690
|
+
./spec/models/spotlight/contact_form_spec.rb[1:1:2:1] | passed | 0.01352 seconds |
|
691
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:1] | passed | 0.01842 seconds |
|
692
|
+
./spec/models/spotlight/contact_form_spec.rb[1:2:2] | passed | 0.01735 seconds |
|
693
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:1] | passed | 0.0105 seconds |
|
694
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:2] | passed | 0.01227 seconds |
|
695
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:3] | passed | 0.01055 seconds |
|
696
|
+
./spec/models/spotlight/contact_form_spec.rb[1:3:4] | passed | 0.01038 seconds |
|
697
|
+
./spec/models/spotlight/contact_image_spec.rb[1:1] | passed | 0.00964 seconds |
|
698
|
+
./spec/models/spotlight/contact_spec.rb[1:1:1] | passed | 0.05529 seconds |
|
699
|
+
./spec/models/spotlight/contact_spec.rb[1:1:2] | passed | 0.05402 seconds |
|
700
|
+
./spec/models/spotlight/contact_spec.rb[1:2:1] | passed | 0.0543 seconds |
|
701
|
+
./spec/models/spotlight/contact_spec.rb[1:3:1] | passed | 0.05175 seconds |
|
702
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:1:1:1] | passed | 0.01224 seconds |
|
703
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:1:1:1] | passed | 0.05309 seconds |
|
704
|
+
./spec/models/spotlight/custom_field_spec.rb[1:1:2:2:1:1] | passed | 0.0503 seconds |
|
705
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:1:1:1] | passed | 0.01783 seconds |
|
706
|
+
./spec/models/spotlight/custom_field_spec.rb[1:2:2:1:1] | passed | 0.06164 seconds |
|
707
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:1] | passed | 0.01671 seconds |
|
708
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:2] | passed | 0.01688 seconds |
|
709
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:3] | passed | 0.01572 seconds |
|
710
|
+
./spec/models/spotlight/custom_field_spec.rb[1:3:4] | passed | 0.01633 seconds |
|
711
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:1] | passed | 0.05564 seconds |
|
712
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:2:1] | passed | 0.05359 seconds |
|
713
|
+
./spec/models/spotlight/custom_field_spec.rb[1:4:3:1] | passed | 0.05552 seconds |
|
714
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:1] | passed | 0.07425 seconds |
|
715
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:2] | passed | 0.06532 seconds |
|
716
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:3] | passed | 0.06008 seconds |
|
717
|
+
./spec/models/spotlight/custom_field_spec.rb[1:5:4] | passed | 0.06017 seconds |
|
718
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:1] | passed | 0.08357 seconds |
|
719
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:2] | passed | 0.10986 seconds |
|
720
|
+
./spec/models/spotlight/custom_field_spec.rb[1:6:3] | passed | 0.08699 seconds |
|
721
|
+
./spec/models/spotlight/exhibit_spec.rb[1:1] | passed | 0.02153 seconds |
|
722
|
+
./spec/models/spotlight/exhibit_spec.rb[1:2] | passed | 0.0201 seconds |
|
723
|
+
./spec/models/spotlight/exhibit_spec.rb[1:3] | passed | 0.0677 seconds |
|
724
|
+
./spec/models/spotlight/exhibit_spec.rb[1:4:1] | passed | 0.02771 seconds |
|
725
|
+
./spec/models/spotlight/exhibit_spec.rb[1:5] | passed | 0.02014 seconds |
|
726
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:1] | passed | 0.05754 seconds |
|
727
|
+
./spec/models/spotlight/exhibit_spec.rb[1:6:2] | passed | 0.05573 seconds |
|
728
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:1] | passed | 0.05464 seconds |
|
729
|
+
./spec/models/spotlight/exhibit_spec.rb[1:7:2] | passed | 0.05514 seconds |
|
730
|
+
./spec/models/spotlight/exhibit_spec.rb[1:8:1] | passed | 0.02046 seconds |
|
731
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:1] | passed | 0.05805 seconds |
|
732
|
+
./spec/models/spotlight/exhibit_spec.rb[1:9:2] | passed | 0.05521 seconds |
|
733
|
+
./spec/models/spotlight/exhibit_spec.rb[1:10:1] | passed | 0.11741 seconds |
|
734
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:1:1] | passed | 0.09571 seconds |
|
735
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:2:1] | passed | 0.08218 seconds |
|
736
|
+
./spec/models/spotlight/exhibit_spec.rb[1:11:3:1] | passed | 0.06632 seconds |
|
737
|
+
./spec/models/spotlight/exhibit_spec.rb[1:12:1] | passed | 0.07355 seconds |
|
738
|
+
./spec/models/spotlight/exhibit_spec.rb[1:13:1] | passed | 0.05825 seconds |
|
739
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:1:1] | passed | 0.05592 seconds |
|
740
|
+
./spec/models/spotlight/exhibit_spec.rb[1:14:2:1] | passed | 0.06038 seconds |
|
741
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:1] | passed | 0.09356 seconds |
|
742
|
+
./spec/models/spotlight/exhibit_spec.rb[1:15:2] | passed | 0.07044 seconds |
|
743
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:1] | passed | 0.03613 seconds |
|
744
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:2] | passed | 0.03724 seconds |
|
745
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:3:1] | passed | 0.04242 seconds |
|
746
|
+
./spec/models/spotlight/exhibit_spec.rb[1:16:4:1] | passed | 0.04486 seconds |
|
747
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:1:1] | passed | 0.10677 seconds |
|
748
|
+
./spec/models/spotlight/exhibit_spec.rb[1:17:2:1] | passed | 0.02465 seconds |
|
749
|
+
./spec/models/spotlight/exhibit_spec.rb[1:18:1] | passed | 0.10704 seconds |
|
750
|
+
./spec/models/spotlight/exhibit_spec.rb[1:19] | passed | 0.02125 seconds |
|
751
|
+
./spec/models/spotlight/exhibit_thumbnail_spec.rb[1:1] | passed | 0.01526 seconds |
|
752
|
+
./spec/models/spotlight/feature_page_spec.rb[1:1:1] | passed | 0.10437 seconds |
|
753
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:1] | passed | 0.10335 seconds |
|
754
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:2] | passed | 0.15768 seconds |
|
755
|
+
./spec/models/spotlight/feature_page_spec.rb[1:2:3] | passed | 0.18301 seconds |
|
756
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:1] | passed | 0.01357 seconds |
|
757
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:2] | passed | 0.0765 seconds |
|
758
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:3] | passed | 0.08251 seconds |
|
759
|
+
./spec/models/spotlight/feature_page_spec.rb[1:3:4] | passed | 0.12147 seconds |
|
760
|
+
./spec/models/spotlight/feature_page_spec.rb[1:4] | passed | 0.01996 seconds |
|
761
|
+
./spec/models/spotlight/feature_page_spec.rb[1:5] | passed | 0.01603 seconds |
|
762
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:1] | passed | 0.1361 seconds |
|
763
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:2] | passed | 0.12921 seconds |
|
764
|
+
./spec/models/spotlight/feature_page_spec.rb[1:6:3] | passed | 0.13988 seconds |
|
765
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:1] | passed | 0.01584 seconds |
|
766
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:1:2] | passed | 0.01588 seconds |
|
767
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:1] | passed | 0.02079 seconds |
|
768
|
+
./spec/models/spotlight/featured_image_spec.rb[1:1:2:2] | passed | 0.02104 seconds |
|
769
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:1] | passed | 0.02643 seconds |
|
770
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:2] | passed | 0.02584 seconds |
|
771
|
+
./spec/models/spotlight/featured_image_spec.rb[1:2:3] | passed | 0.02371 seconds |
|
772
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:1] | passed | 0.01722 seconds |
|
773
|
+
./spec/models/spotlight/featured_image_spec.rb[1:3:2] | passed | 0.0151 seconds |
|
774
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:1] | passed | 0.06516 seconds |
|
775
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:2] | passed | 0.07022 seconds |
|
776
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:3] | passed | 0.09255 seconds |
|
777
|
+
./spec/models/spotlight/field_metadata_spec.rb[1:1:4:1] | passed | 0.16713 seconds |
|
778
|
+
./spec/models/spotlight/filter_spec.rb[1:1:1] | passed | 0.03169 seconds |
|
779
|
+
./spec/models/spotlight/filter_spec.rb[1:2:1] | passed | 0.03564 seconds |
|
780
|
+
./spec/models/spotlight/home_page_spec.rb[1:1] | passed | 0.03202 seconds |
|
781
|
+
./spec/models/spotlight/home_page_spec.rb[1:2] | passed | 0.03141 seconds |
|
782
|
+
./spec/models/spotlight/home_page_spec.rb[1:3] | passed | 0.17922 seconds |
|
783
|
+
./spec/models/spotlight/home_page_spec.rb[1:4] | passed | 0.10266 seconds |
|
784
|
+
./spec/models/spotlight/home_page_spec.rb[1:5:1] | passed | 0.09539 seconds |
|
785
|
+
./spec/models/spotlight/home_page_spec.rb[1:6:1] | passed | 0.07268 seconds |
|
786
|
+
./spec/models/spotlight/home_page_spec.rb[1:7:1] | passed | 0.07977 seconds |
|
787
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:1] | passed | 0.10387 seconds |
|
788
|
+
./spec/models/spotlight/main_navigation_spec.rb[1:2] | passed | 0.09344 seconds |
|
789
|
+
./spec/models/spotlight/masthead_spec.rb[1:1:1] | passed | 0.01184 seconds |
|
790
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:1:1] | passed | 0.01078 seconds |
|
791
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:2:1] | passed | 0.01373 seconds |
|
792
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:1:1] | passed | 0.01407 seconds |
|
793
|
+
./spec/models/spotlight/masthead_spec.rb[1:2:3:2:1] | passed | 0.01621 seconds |
|
794
|
+
./spec/models/spotlight/page_spec.rb[1:1:1] | passed | 0.07232 seconds |
|
795
|
+
./spec/models/spotlight/page_spec.rb[1:2:1] | passed | 0.09045 seconds |
|
796
|
+
./spec/models/spotlight/page_spec.rb[1:3] | passed | 0.06719 seconds |
|
797
|
+
./spec/models/spotlight/page_spec.rb[1:4:1] | passed | 0.06936 seconds |
|
798
|
+
./spec/models/spotlight/page_spec.rb[1:5:1] | passed | 0.06541 seconds |
|
799
|
+
./spec/models/spotlight/page_spec.rb[1:5:2] | passed | 0.06831 seconds |
|
800
|
+
./spec/models/spotlight/page_spec.rb[1:6:1] | passed | 0.06894 seconds |
|
801
|
+
./spec/models/spotlight/page_spec.rb[1:7:1] | passed | 0.13142 seconds |
|
802
|
+
./spec/models/spotlight/page_spec.rb[1:8:1] | passed | 0.12295 seconds |
|
803
|
+
./spec/models/spotlight/page_spec.rb[1:8:2] | passed | 0.1224 seconds |
|
804
|
+
./spec/models/spotlight/page_spec.rb[1:9:1] | passed | 0.13011 seconds |
|
805
|
+
./spec/models/spotlight/page_spec.rb[1:9:2] | passed | 0.12218 seconds |
|
806
|
+
./spec/models/spotlight/page_spec.rb[1:10:1] | passed | 0.13415 seconds |
|
807
|
+
./spec/models/spotlight/page_spec.rb[1:10:2] | passed | 0.26887 seconds |
|
808
|
+
./spec/models/spotlight/page_spec.rb[1:10:3:1] | passed | 0.1852 seconds |
|
809
|
+
./spec/models/spotlight/page_spec.rb[1:11:1] | passed | 0.07136 seconds |
|
810
|
+
./spec/models/spotlight/page_spec.rb[1:11:2] | passed | 0.09477 seconds |
|
811
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:1:1] | passed | 0.08462 seconds |
|
812
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:2:1] | passed | 0.10492 seconds |
|
813
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:3:1] | passed | 0.08772 seconds |
|
814
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:4:1] | passed | 0.08762 seconds |
|
815
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:5:1] | passed | 0.08211 seconds |
|
816
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:6:1] | passed | 0.09144 seconds |
|
817
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:7:1] | passed | 0.09512 seconds |
|
818
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:8:1] | passed | 0.08917 seconds |
|
819
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:1:1] | passed | 0.09522 seconds |
|
820
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:2:1] | passed | 0.08902 seconds |
|
821
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:9:3:1] | passed | 0.08387 seconds |
|
822
|
+
./spec/models/spotlight/reindex_progress_spec.rb[1:10:1] | passed | 0.01464 seconds |
|
823
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:1:1] | passed | 1.72 seconds |
|
824
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:1:2:1] | passed | 1.8 seconds |
|
825
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:1:1] | passed | 0.12338 seconds |
|
826
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:2:2:1] | passed | 0.05205 seconds |
|
827
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:1:1] | passed | 0.08158 seconds |
|
828
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:1:2:1] | passed | 0.12089 seconds |
|
829
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:1:1] | passed | 0.08648 seconds |
|
830
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:2:2:1] | passed | 0.08389 seconds |
|
831
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:1:1] | passed | 0.08601 seconds |
|
832
|
+
./spec/models/spotlight/reindexing_log_entry_spec.rb[1:3:3:2:1] | passed | 0.0889 seconds |
|
833
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:1] | passed | 0.12679 seconds |
|
834
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:2:1] | passed | 0.11083 seconds |
|
835
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:3:1] | passed | 0.11348 seconds |
|
836
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:4:1] | passed | 0.11902 seconds |
|
837
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:1] | passed | 0.13731 seconds |
|
838
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:2] | passed | 0.13162 seconds |
|
839
|
+
./spec/models/spotlight/resource_spec.rb[1:1:1:5:3] | passed | 0.13549 seconds |
|
840
|
+
./spec/models/spotlight/resource_spec.rb[1:2:1] | passed | 0.01508 seconds |
|
841
|
+
./spec/models/spotlight/resource_spec.rb[1:2:2] | passed | 0.01476 seconds |
|
842
|
+
./spec/models/spotlight/resource_spec.rb[1:2:3:1] | passed | 0.01445 seconds |
|
843
|
+
./spec/models/spotlight/resource_spec.rb[1:3] | passed | 0.01384 seconds |
|
844
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:1:1:1] | passed | 0.05983 seconds |
|
845
|
+
./spec/models/spotlight/resources/iiif_harvester_spec.rb[1:2:1] | passed | 0.40855 seconds |
|
846
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:1:1] | passed | 0.07826 seconds |
|
847
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:1] | passed | 0.08333 seconds |
|
848
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:2:2] | passed | 0.07852 seconds |
|
849
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:1:1] | passed | 0.07519 seconds |
|
850
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:3:2:1] | passed | 0.07629 seconds |
|
851
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:4:1] | passed | 0.10983 seconds |
|
852
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:5:1] | passed | 0.08932 seconds |
|
853
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:6:1] | passed | 0.0858 seconds |
|
854
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:7:1] | passed | 0.08595 seconds |
|
855
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:8:1] | passed | 0.08238 seconds |
|
856
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:1] | passed | 0.08512 seconds |
|
857
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:2] | passed | 0.08362 seconds |
|
858
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:3] | passed | 0.09257 seconds |
|
859
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:4] | passed | 0.0993 seconds |
|
860
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:5] | passed | 0.08578 seconds |
|
861
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:6] | passed | 0.08145 seconds |
|
862
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:7] | passed | 0.08367 seconds |
|
863
|
+
./spec/models/spotlight/resources/iiif_manifest_spec.rb[1:1:9:8:1] | passed | 0.06986 seconds |
|
864
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:1] | passed | 0.01623 seconds |
|
865
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:1:2] | passed | 0.01873 seconds |
|
866
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:2:1] | passed | 0.02217 seconds |
|
867
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:1] | passed | 0.02415 seconds |
|
868
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:2] | passed | 0.02458 seconds |
|
869
|
+
./spec/models/spotlight/resources/iiif_service_spec.rb[1:3:3] | passed | 0.02393 seconds |
|
870
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:1] | passed | 0.02177 seconds |
|
871
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:1:2] | passed | 0.01125 seconds |
|
872
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:2:1] | passed | 0.01173 seconds |
|
873
|
+
./spec/models/spotlight/resources/open_graph_spec.rb[1:3:1] | passed | 0.01105 seconds |
|
874
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:1:1:1] | passed | 0.98759 seconds |
|
875
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:2:1:1] | passed | 0.12348 seconds |
|
876
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:1] | passed | 0.12726 seconds |
|
877
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:2] | passed | 0.16452 seconds |
|
878
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:3] | passed | 0.1931 seconds |
|
879
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:4] | passed | 0.15542 seconds |
|
880
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:5] | passed | 0.14764 seconds |
|
881
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:6] | passed | 0.14584 seconds |
|
882
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:7] | passed | 0.13864 seconds |
|
883
|
+
./spec/models/spotlight/resources/upload_spec.rb[1:3:8] | passed | 0.14225 seconds |
|
884
|
+
./spec/models/spotlight/resources/web_spec.rb[1:1:1] | passed | 0.01385 seconds |
|
885
|
+
./spec/models/spotlight/resources/web_spec.rb[1:2:1] | passed | 0.01304 seconds |
|
886
|
+
./spec/models/spotlight/role_spec.rb[1:1:1:1] | passed | 0.02536 seconds |
|
887
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:1:1] | passed | 0.03236 seconds |
|
888
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:2:1] | passed | 0.02452 seconds |
|
889
|
+
./spec/models/spotlight/role_spec.rb[1:1:2:3:1] | passed | 0.02324 seconds |
|
890
|
+
./spec/models/spotlight/search_spec.rb[1:1:1] | passed | 0.08875 seconds |
|
891
|
+
./spec/models/spotlight/search_spec.rb[1:2:1] | passed | 0.20462 seconds |
|
892
|
+
./spec/models/spotlight/search_spec.rb[1:3:1] | passed | 0.07869 seconds |
|
893
|
+
./spec/models/spotlight/search_spec.rb[1:3:2] | passed | 0.08157 seconds |
|
894
|
+
./spec/models/spotlight/search_spec.rb[1:3:3:1] | passed | 0.07013 seconds |
|
895
|
+
./spec/models/spotlight/search_spec.rb[1:4:1] | passed | 0.06875 seconds |
|
896
|
+
./spec/models/spotlight/search_spec.rb[1:4:2:1] | passed | 0.07233 seconds |
|
897
|
+
./spec/models/spotlight/search_spec.rb[1:5:1] | passed | 0.07288 seconds |
|
898
|
+
./spec/models/spotlight/search_spec.rb[1:6:1] | passed | 0.0608 seconds |
|
899
|
+
./spec/models/spotlight/search_spec.rb[1:6:2] | passed | 0.06046 seconds |
|
900
|
+
./spec/models/spotlight/site_spec.rb[1:1:1] | passed | 0.01254 seconds |
|
901
|
+
./spec/models/spotlight/sitemap_spec.rb[1:1:1] | passed | 0.15711 seconds |
|
902
|
+
./spec/models/spotlight/sitemap_spec.rb[1:2:1] | passed | 0.05871 seconds |
|
903
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:1] | passed | 0.05557 seconds |
|
904
|
+
./spec/models/spotlight/sitemap_spec.rb[1:3:2] | passed | 0.05536 seconds |
|
905
|
+
./spec/models/spotlight/sitemap_spec.rb[1:4:1] | passed | 0.06089 seconds |
|
906
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:1] | passed | 0.07988 seconds |
|
907
|
+
./spec/models/spotlight/sitemap_spec.rb[1:5:2] | passed | 0.08553 seconds |
|
908
|
+
./spec/models/spotlight/sitemap_spec.rb[1:6:1] | passed | 0.06347 seconds |
|
909
|
+
./spec/models/spotlight/sitemap_spec.rb[1:7:1] | passed | 0.07667 seconds |
|
910
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:1:1] | passed | 0.01104 seconds |
|
911
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:2] | passed | 0.01212 seconds |
|
912
|
+
./spec/models/spotlight/solr_document/atomic_updates_spec.rb[1:1:3] | passed | 0.01149 seconds |
|
913
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:1] | passed | 0.01133 seconds |
|
914
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:1:2] | passed | 0.01061 seconds |
|
915
|
+
./spec/models/spotlight/solr_document/uploaded_resource_spec.rb[1:2:1] | passed | 0.01188 seconds |
|
916
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:1:1] | passed | 0.07156 seconds |
|
917
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:2:1] | passed | 0.06768 seconds |
|
918
|
+
./spec/models/spotlight/solr_document_sidecar_spec.rb[1:1:3:1] | passed | 0.10073 seconds |
|
919
|
+
./spec/models/spotlight/user_spec.rb[1:1:1] | passed | 0.01199 seconds |
|
920
|
+
./spec/models/spotlight/user_spec.rb[1:1:2] | passed | 0.01236 seconds |
|
921
|
+
./spec/models/spotlight/user_spec.rb[1:1:3] | passed | 0.01238 seconds |
|
922
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:1:1] | passed | 0.08427 seconds |
|
923
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:2:1] | passed | 0.07395 seconds |
|
924
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:3:1] | passed | 0.06717 seconds |
|
925
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:4:1] | passed | 0.07276 seconds |
|
926
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:5:1] | passed | 0.06855 seconds |
|
927
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:6:1] | passed | 0.06437 seconds |
|
928
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:7:1] | passed | 0.06943 seconds |
|
929
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:1:8:1] | passed | 0.06914 seconds |
|
930
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:1:1] | passed | 0.06682 seconds |
|
931
|
+
./spec/presenters/spotlight/iiif_manifest_presenter_spec.rb[1:2:2:1] | passed | 0.06572 seconds |
|
932
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:1] | passed | 0.01033 seconds |
|
933
|
+
./spec/routing/spotlight/exhibit_catalog_spec.rb[1:1:2] | passed | 0.01017 seconds |
|
934
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:1] | passed | 0.01012 seconds |
|
935
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:2] | passed | 0.01112 seconds |
|
936
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:3] | passed | 0.01338 seconds |
|
937
|
+
./spec/routing/spotlight/featured_images_spec.rb[1:1:4] | passed | 0.01175 seconds |
|
938
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:1] | passed | 0.01342 seconds |
|
939
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:2] | passed | 0.01275 seconds |
|
940
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:3] | passed | 0.01128 seconds |
|
941
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:4] | passed | 0.01081 seconds |
|
942
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:5] | passed | 0.01221 seconds |
|
943
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:6] | passed | 0.01176 seconds |
|
944
|
+
./spec/routing/spotlight/pages_routing_spec.rb[1:1:7] | passed | 0.01371 seconds |
|
945
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:1] | passed | 0.07626 seconds |
|
946
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:2] | passed | 0.07912 seconds |
|
947
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:3] | passed | 0.07486 seconds |
|
948
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:4] | passed | 0.06833 seconds |
|
949
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:5] | passed | 0.07129 seconds |
|
950
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:6] | passed | 0.07156 seconds |
|
951
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:7] | passed | 0.07268 seconds |
|
952
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:8] | passed | 0.07089 seconds |
|
953
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:9] | passed | 0.07529 seconds |
|
954
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:10] | passed | 0.07238 seconds |
|
955
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:11] | passed | 0.06925 seconds |
|
956
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:12] | passed | 0.07964 seconds |
|
957
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:1] | passed | 0.17724 seconds |
|
958
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:2] | passed | 0.18892 seconds |
|
959
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:3] | passed | 0.17618 seconds |
|
960
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:4:1] | passed | 0.17094 seconds |
|
961
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:5] | passed | 0.16864 seconds |
|
962
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:6] | passed | 0.175 seconds |
|
963
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:1:1] | passed | 0.20987 seconds |
|
964
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:7:2:1] | passed | 0.17571 seconds |
|
965
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:8] | passed | 0.18497 seconds |
|
966
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:9:1] | passed | 0.2092 seconds |
|
967
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:10] | passed | 0.21071 seconds |
|
968
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:11:1] | passed | 0.47414 seconds |
|
969
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:1] | passed | 0.47507 seconds |
|
970
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:2] | passed | 0.53898 seconds |
|
971
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:12:3] | passed | 0.58464 seconds |
|
972
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:13] | passed | 0.2241 seconds |
|
973
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:14] | passed | 0.18659 seconds |
|
974
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:1] | passed | 0.62514 seconds |
|
975
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:2] | passed | 0.23467 seconds |
|
976
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:3:1] | passed | 0.28367 seconds |
|
977
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:15:4:1] | passed | 0.22724 seconds |
|
978
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:16:1] | passed | 0.19246 seconds |
|
979
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:13:17:1] | passed | 0.18847 seconds |
|
980
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:14] | passed | 0.20963 seconds |
|
981
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:1] | passed | 0.18881 seconds |
|
982
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:1:2] | passed | 0.18115 seconds |
|
983
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:1] | passed | 0.45267 seconds |
|
984
|
+
./spec/serializers/spotlight/exhibit_export_serializer_spec.rb[1:15:2:2] | passed | 0.39214 seconds |
|
985
|
+
./spec/services/spotlight/carrierwave_file_resolver_spec.rb[1:1:1] | passed | 0.05627 seconds |
|
986
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:1:1] | passed | 0.0582 seconds |
|
987
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:1] | passed | 0.0512 seconds |
|
988
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:1:2:2] | passed | 0.05885 seconds |
|
989
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:1:1] | passed | 0.04426 seconds |
|
990
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:2:1] | passed | 0.03428 seconds |
|
991
|
+
./spec/services/spotlight/iiif_resource_resolver_spec.rb[1:2:3:1] | passed | 0.02103 seconds |
|
992
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:1:1] | passed | 0.11299 seconds |
|
993
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:2:1] | passed | 0.12544 seconds |
|
994
|
+
./spec/services/spotlight/invite_users_service_spec.rb[1:3:1] | passed | 0.12338 seconds |
|
995
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:1:1] | passed | 0.06323 seconds |
|
996
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:1] | passed | 0.16572 seconds |
|
997
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:2] | passed | 0.27531 seconds |
|
998
|
+
./spec/services/spotlight/solr_document_builder_spec.rb[1:2:1:3] | passed | 0.34138 seconds |
|
999
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:1] | passed | 0.01585 seconds |
|
1000
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:2] | passed | 0.04366 seconds |
|
1001
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:3] | passed | 0.03221 seconds |
|
1002
|
+
./spec/uploaders/spotlight/attachment_uploader_spec.rb[1:1:4] | passed | 0.02069 seconds |
|
1003
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:1:1] | passed | 0.05478 seconds |
|
1004
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:1] | passed | 0.06792 seconds |
|
1005
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:2] | passed | 0.13916 seconds |
|
1006
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:3] | passed | 0.04749 seconds |
|
1007
|
+
./spec/uploaders/spotlight/featured_image_uploader_spec.rb[1:2:4] | passed | 0.06993 seconds |
|
1008
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:1:1] | passed | 0.27399 seconds |
|
1009
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:2:1] | passed | 0.06125 seconds |
|
1010
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:3:1] | passed | 0.07998 seconds |
|
1011
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:4:1] | passed | 0.06834 seconds |
|
1012
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:5:1] | passed | 0.06456 seconds |
|
1013
|
+
./spec/views/_user_util_links.html.erb_spec.rb[1:6:1] | passed | 0.05909 seconds |
|
1014
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:1] | passed | 0.12041 seconds |
|
1015
|
+
./spec/views/shared/_analytics.html.erb_spec.rb[1:2] | passed | 0.0316 seconds |
|
1016
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:1] | passed | 0.19249 seconds |
|
1017
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:2] | passed | 0.08429 seconds |
|
1018
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:3] | passed | 0.12319 seconds |
|
1019
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:4] | passed | 0.11244 seconds |
|
1020
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:5] | passed | 0.1265 seconds |
|
1021
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:6] | passed | 0.0827 seconds |
|
1022
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:7] | passed | 0.09297 seconds |
|
1023
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:8] | passed | 0.11637 seconds |
|
1024
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:9] | passed | 0.10083 seconds |
|
1025
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:10] | passed | 0.11026 seconds |
|
1026
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:11] | passed | 0.14007 seconds |
|
1027
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:12] | passed | 0.08501 seconds |
|
1028
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:13] | passed | 0.07548 seconds |
|
1029
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:14] | passed | 0.10014 seconds |
|
1030
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:15] | passed | 0.11603 seconds |
|
1031
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:16] | passed | 0.08052 seconds |
|
1032
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:17] | passed | 0.07553 seconds |
|
1033
|
+
./spec/views/shared/_exhibit_navbar.html.erb_spec.rb[1:18] | passed | 0.07083 seconds |
|
1034
|
+
./spec/views/shared/_footer.html.erb_spec.rb[1:1] | passed | 0.12998 seconds |
|
1035
|
+
./spec/views/shared/_header_navbar.html.erb_spec.rb[1:1] | passed | 0.13107 seconds |
|
1036
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:1] | passed | 0.18114 seconds |
|
1037
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:2:1] | passed | 0.07408 seconds |
|
1038
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:3] | passed | 0.09346 seconds |
|
1039
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:1] | passed | 0.09598 seconds |
|
1040
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:4:2] | passed | 0.09414 seconds |
|
1041
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:1] | passed | 0.08728 seconds |
|
1042
|
+
./spec/views/shared/_masthead.html.erb_spec.rb[1:5:2] | passed | 0.11673 seconds |
|
1043
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.02621 seconds |
|
1044
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01663 seconds |
|
1045
|
+
./spec/views/spotlight/about_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01604 seconds |
|
1046
|
+
./spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.12935 seconds |
|
1047
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:1] | passed | 4.24 seconds |
|
1048
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:1] | passed | 0.0359 seconds |
|
1049
|
+
./spec/views/spotlight/about_pages/index.html.erb_spec.rb[1:2:2] | passed | 0.04378 seconds |
|
1050
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:1] | passed | 0.25132 seconds |
|
1051
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:2] | passed | 0.12345 seconds |
|
1052
|
+
./spec/views/spotlight/browse/_search.html.erb_spec.rb[1:3] | passed | 0.14136 seconds |
|
1053
|
+
./spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb[1:1] | passed | 0.16808 seconds |
|
1054
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:1] | passed | 0.01995 seconds |
|
1055
|
+
./spec/views/spotlight/browse/index.html.erb_spec.rb[1:2] | passed | 0.1689 seconds |
|
1056
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:1] | passed | 1.06 seconds |
|
1057
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:2] | passed | 0.13292 seconds |
|
1058
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:3] | passed | 0.13579 seconds |
|
1059
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:4] | passed | 0.13381 seconds |
|
1060
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:5] | passed | 0.14173 seconds |
|
1061
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:6] | passed | 0.14028 seconds |
|
1062
|
+
./spec/views/spotlight/browse/show.html.erb_spec.rb[1:7] | passed | 0.1442 seconds |
|
1063
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:1] | passed | 0.03316 seconds |
|
1064
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:2] | passed | 0.03311 seconds |
|
1065
|
+
./spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb[1:3] | passed | 0.03279 seconds |
|
1066
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:1] | passed | 0.97304 seconds |
|
1067
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:2] | passed | 0.0426 seconds |
|
1068
|
+
./spec/views/spotlight/catalog/admin.html.erb_spec.rb[1:3] | passed | 0.06702 seconds |
|
1069
|
+
./spec/views/spotlight/catalog/edit.html.erb_spec.rb[1:1] | passed | 0.02439 seconds |
|
1070
|
+
./spec/views/spotlight/contacts/edit.html.erb_spec.rb[1:1] | passed | 0.56149 seconds |
|
1071
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:1] | passed | 0.07289 seconds |
|
1072
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:2] | passed | 0.06072 seconds |
|
1073
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:3] | passed | 0.06086 seconds |
|
1074
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:4] | passed | 0.14221 seconds |
|
1075
|
+
./spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb[1:5] | passed | 0.07411 seconds |
|
1076
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:1] | passed | 0.14362 seconds |
|
1077
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:1:2] | passed | 0.01323 seconds |
|
1078
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:1] | passed | 0.41395 seconds |
|
1079
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:2] | passed | 0.52335 seconds |
|
1080
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:3] | passed | 0.53829 seconds |
|
1081
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:4] | passed | 0.5353 seconds |
|
1082
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:5] | passed | 0.56074 seconds |
|
1083
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:6] | passed | 0.49611 seconds |
|
1084
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:2:7] | passed | 0.56077 seconds |
|
1085
|
+
./spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb[1:3:1] | passed | 0.11863 seconds |
|
1086
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:1] | passed | 0.13664 seconds |
|
1087
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:2] | passed | 0.07545 seconds |
|
1088
|
+
./spec/views/spotlight/dashboards/analytics.html.erb_spec.rb[1:3:1] | passed | 0.5049 seconds |
|
1089
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:1:1] | passed | 0.07576 seconds |
|
1090
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:2] | passed | 0.20099 seconds |
|
1091
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:3] | passed | 0.06403 seconds |
|
1092
|
+
./spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb[1:4:1] | passed | 0.07514 seconds |
|
1093
|
+
./spec/views/spotlight/exhibits/edit.html.erb_spec.rb[1:1] | passed | 1.79 seconds |
|
1094
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:1] | passed | 2.51 seconds |
|
1095
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:2] | passed | 0.18067 seconds |
|
1096
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:3] | passed | 0.17961 seconds |
|
1097
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:4] | passed | 0.19678 seconds |
|
1098
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:5:1] | passed | 2.58 seconds |
|
1099
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:6:1] | passed | 0.18332 seconds |
|
1100
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:1] | passed | 0.22738 seconds |
|
1101
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:7:2] | passed | 0.24518 seconds |
|
1102
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:1:8:1] | passed | 0.23398 seconds |
|
1103
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:1] | passed | 0.4907 seconds |
|
1104
|
+
./spec/views/spotlight/exhibits/index.html.erb_spec.rb[1:2:2] | passed | 0.02929 seconds |
|
1105
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.03395 seconds |
|
1106
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:1] | passed | 0.01442 seconds |
|
1107
|
+
./spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb[1:2:2] | passed | 0.01679 seconds |
|
1108
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.21872 seconds |
|
1109
|
+
./spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb[1:2] | passed | 0.20688 seconds |
|
1110
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:1] | passed | 0.08436 seconds |
|
1111
|
+
./spec/views/spotlight/home_pages/_empty.html.erb_spec.rb[1:1:2] | passed | 0.06502 seconds |
|
1112
|
+
./spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb[1:1] | passed | 0.02482 seconds |
|
1113
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:1] | passed | 0.18686 seconds |
|
1114
|
+
./spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb[1:2] | passed | 0.07137 seconds |
|
1115
|
+
./spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb[1:1] | passed | 0.70015 seconds |
|
1116
|
+
./spec/views/spotlight/pages/_form.html.erb_spec.rb[1:1] | passed | 0.48646 seconds |
|
1117
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:1] | passed | 0.02811 seconds |
|
1118
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:1] | passed | 0.15692 seconds |
|
1119
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:2] | passed | 0.02673 seconds |
|
1120
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:3] | passed | 0.03131 seconds |
|
1121
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:4] | passed | 0.04202 seconds |
|
1122
|
+
./spec/views/spotlight/pages/edit.html.erb_spec.rb[1:2:5] | passed | 0.03104 seconds |
|
1123
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:1] | passed | 0.06647 seconds |
|
1124
|
+
./spec/views/spotlight/pages/index.html.erb_spec.rb[1:2:1] | passed | 0.03 seconds |
|
1125
|
+
./spec/views/spotlight/pages/new.html.erb_spec.rb[1:1] | passed | 0.16081 seconds |
|
1126
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:1] | passed | 0.48187 seconds |
|
1127
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:2] | passed | 0.02746 seconds |
|
1128
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:3] | passed | 0.02762 seconds |
|
1129
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:4] | passed | 0.04968 seconds |
|
1130
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:5] | passed | 0.02772 seconds |
|
1131
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:6] | passed | 0.02939 seconds |
|
1132
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:7] | passed | 0.37222 seconds |
|
1133
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:8] | passed | 0.02497 seconds |
|
1134
|
+
./spec/views/spotlight/pages/show.html.erb_spec.rb[1:9] | passed | 0.03805 seconds |
|
1135
|
+
./spec/views/spotlight/resources/_external_resources_form.html.erb_spec.rb[1:1] | passed | 0.03426 seconds |
|
1136
|
+
./spec/views/spotlight/resources/new.html.erb_spec.rb[1:1] | passed | 0.05815 seconds |
|
1137
|
+
./spec/views/spotlight/roles/index.html.erb_spec.rb[1:1] | passed | 0.63868 seconds |
|
1138
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:1:1] | passed | 0.1449 seconds |
|
1139
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:2:1] | passed | 0.0141 seconds |
|
1140
|
+
./spec/views/spotlight/search_configurations/_facet_metadata.html.erb_spec.rb[1:3:1] | passed | 0.01351 seconds |
|
1141
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:1] | passed | 0.54869 seconds |
|
1142
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:2] | passed | 0.08987 seconds |
|
1143
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:3] | passed | 0.12767 seconds |
|
1144
|
+
./spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb[1:4:1] | passed | 0.10743 seconds |
|
1145
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:1] | passed | 0.20553 seconds |
|
1146
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:2] | passed | 0.07376 seconds |
|
1147
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:3] | passed | 0.08589 seconds |
|
1148
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:4] | passed | 0.10954 seconds |
|
1149
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:5] | passed | 0.08667 seconds |
|
1150
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:6] | passed | 0.07574 seconds |
|
1151
|
+
./spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb[1:7] | passed | 0.08506 seconds |
|
1152
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:1] | passed | 0.20793 seconds |
|
1153
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:2] | passed | 0.09225 seconds |
|
1154
|
+
./spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb[1:3] | passed | 0.07917 seconds |
|
1155
|
+
./spec/views/spotlight/searches/_search.html.erb_spec.rb[1:1] | passed | 0.23401 seconds |
|
1156
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:1] | passed | 0.43473 seconds |
|
1157
|
+
./spec/views/spotlight/searches/edit.html.erb_spec.rb[1:2] | passed | 0.11592 seconds |
|
1158
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:1:1] | passed | 0.03877 seconds |
|
1159
|
+
./spec/views/spotlight/searches/index.html.erb_spec.rb[1:2:1] | passed | 0.0308 seconds |
|
1160
|
+
./spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb[1:1] | passed | 0.21622 seconds |
|
1161
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:1] | passed | 0.1497 seconds |
|
1162
|
+
./spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb[1:2] | passed | 0.01937 seconds |
|
1163
|
+
./spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb[1:1] | passed | 0.24195 seconds |
|
1164
|
+
./spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb[1:1] | passed | 0.15691 seconds |
|
1165
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb[1:1:1] | passed | 0.15686 seconds |
|
1166
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb[1:1] | passed | 0.17389 seconds |
|
1167
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb[1:1] | passed | 0.16375 seconds |
|
1168
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:1] | passed | 0.16885 seconds |
|
1169
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb[1:2] | passed | 0.02195 seconds |
|
1170
|
+
./spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb[1:1] | passed | 0.16842 seconds |
|
1171
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:1] | passed | 0.65653 seconds |
|
1172
|
+
./spec/views/spotlight/sites/edit_exhibits.html.erb_spec.rb[1:2] | passed | 0.12999 seconds |
|
1173
|
+
./spec/views/spotlight/tags/index.html.erb_spec.rb[1:1:1] | passed | 0.11751 seconds |
|