mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-25 22:27:18 +10:00
11 lines
205 B
Ruby
11 lines
205 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "listings/show", type: :view do
|
|
before(:each) do
|
|
@listing = assign(:listing, Listing.create!())
|
|
end
|
|
|
|
it "renders attributes in <p>" do
|
|
render
|
|
end
|
|
end
|