mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 18:56:06 -04:00
13 lines
237 B
Ruby
13 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe "Harvests" do
|
|
describe "GET /harvests" do
|
|
it "works! (now write some real specs)" do
|
|
get harvests_path
|
|
expect(response.status).to be 200
|
|
end
|
|
end
|
|
end
|