curly-happiness/spec/requests/listings_spec.rb
2017-11-03 17:09:11 +11:00

10 lines
236 B
Ruby

require 'rails_helper'
RSpec.describe "Listings", type: :request do
describe "GET /listings" do
it "works! (now write some real specs)" do
get listings_path
expect(response).to have_http_status(200)
end
end
end