11 lines
245 B
Ruby
11 lines
245 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Ingredients", type: :request do
|
|
describe "GET /ingredients" do
|
|
it "works! (now write some real specs)" do
|
|
get ingredients_path
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|