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