The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

16 wiersze
251 B

  1. require 'rails_helper'
  2. describe ManifestsController do
  3. render_views
  4. describe 'GET #show' do
  5. before do
  6. get :show, format: :json
  7. end
  8. it 'returns http success' do
  9. expect(response).to have_http_status(200)
  10. end
  11. end
  12. end