mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
11 lines
185 B
Ruby
11 lines
185 B
Ruby
require 'spec_helper'
|
|
|
|
describe HomeController do
|
|
describe "GET index" do
|
|
it "responds with success" do
|
|
get :index
|
|
expect(response).to be_successful
|
|
end
|
|
end
|
|
end
|