updates pages specs

This commit is contained in:
Alberto Garcia Cabeza
2017-03-30 13:53:01 +02:00
parent 8d92c936cc
commit b9a44297aa

View File

@@ -22,38 +22,37 @@ describe PagesController do
get :show, id: :census_terms get :show, id: :census_terms
expect(response).to be_ok expect(response).to be_ok
end end
end
describe 'Provisional pages' do it 'should include a accessibility page' do
it 'should include a opendata page' do get :show, id: :accessibility
get :show, id: :opendata
expect(response).to be_ok expect(response).to be_ok
end end
end end
describe 'Info pages' do describe 'More info pages' do
it 'should include a how_it_works page' do
get :show, id: :how_it_works it 'should include a more_information page' do
get :show, id: 'more_info/index'
expect(response).to be_ok expect(response).to be_ok
end end
it 'should include a how_to_use page' do it 'should include a how_to_use page' do
get :show, id: :how_to_use get :show, id: 'more_info/how_to_use/index'
expect(response).to be_ok expect(response).to be_ok
end end
it 'should include a more_information page' do it 'should include a faq page' do
get :show, id: :more_information get :show, id: 'more_info/faq/index'
expect(response).to be_ok expect(response).to be_ok
end end
it 'should include a participation page' do it 'should include a participation facts page' do
get :show, id: :participation get :show, id: 'more_info/participation/facts'
expect(response).to be_ok expect(response).to be_ok
end end
it 'should include a accessibility page' do it 'should include a participation world page' do
get :show, id: :accessibility get :show, id: 'more_info/participation/world'
expect(response).to be_ok expect(response).to be_ok
end end
end end