1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/spec/controllers/home_controller_spec.rb
2013-05-21 21:09:38 +01:00

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