The code powering m.abunchtell.com https://m.abunchtell.com
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

27 рядки
527 B

  1. require 'rails_helper'
  2. RSpec.describe AboutController, type: :controller do
  3. render_views
  4. describe 'GET #show' do
  5. it 'returns http success' do
  6. get :show
  7. expect(response).to have_http_status(:success)
  8. end
  9. end
  10. describe 'GET #more' do
  11. it 'returns http success' do
  12. get :more
  13. expect(response).to have_http_status(:success)
  14. end
  15. end
  16. describe 'GET #terms' do
  17. it 'returns http success' do
  18. get :terms
  19. expect(response).to have_http_status(:success)
  20. end
  21. end
  22. end