mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-30 18:16:41 +10:00
10 lines
236 B
Ruby
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
|