2014-08-30 17:38:47 +00:00
|
|
|
require 'rails_helper'
|
2013-10-25 18:01:56 +00:00
|
|
|
|
|
|
|
describe PagesController do
|
|
|
|
|
|
|
|
describe '#show' do
|
|
|
|
before do
|
|
|
|
get :show, page: :privacy, use_route: :privacy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders template with a given name' do
|
|
|
|
should render_template(:privacy)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|