rswag/test-app/spec/features/swagger_ui_spec.rb

14 lines
435 B
Ruby

require 'rails_helper'
RSpec.feature 'swagger-ui', js: true do
scenario 'browsing api-docs' do
skip "Needs work to run on others' machines"
visit '/api-docs'
expect(page).to have_content('GET /blogs Searches blogs', normalize_ws: true)
expect(page).to have_content('POST /blogs Creates a blog', normalize_ws: true)
expect(page).to have_content('GET /blogs/{id} Retrieves a blog', normalize_ws: true)
end
end