Files
ch420/spec/requests/greendays_spec.rb
T
2017-11-12 13:27:10 +01:00

11 lines
239 B
Ruby

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