tap/test/controllers/static_pages_controller_tes...

15 lines
252 B
Ruby

require 'test_helper'
class StaticPagesControllerTest < ActionController::TestCase
test "should get home" do
get :home
assert_response :success
end
test "should get overview" do
get :overview
assert_response :success
end
end