10 lines
167 B
Ruby
10 lines
167 B
Ruby
require 'test_helper'
|
|
|
|
class Public::HomeControllerTest < ActionController::TestCase
|
|
test "should get home" do
|
|
get :home
|
|
assert_response :success
|
|
end
|
|
|
|
end
|