privacy_controller_spec.rb 242 B

1234567891011121314
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe PrivacyController do
  4. render_views
  5. describe 'GET #show' do
  6. it 'returns http success' do
  7. get :show
  8. expect(response).to have_http_status(200)
  9. end
  10. end
  11. end