spec/requests/all_spec.rb in aureus-2.1.4 vs spec/requests/all_spec.rb in aureus-3.0.0
- old
+ new
@@ -1,12 +1,13 @@
require 'spec_helper'
describe 'Templates' do
-
- it 'renders all templates properly' do
+ it 'renders the main template properly' do
get '/'
expect(response).to render_template(:index)
+ end
+
+ it 'renders the centered template properly' do
get '/centered'
expect(response).to render_template(:centered)
end
-
end