tap/test/controllers/static_pages_controller_test.rb
2014-11-06 14:46:59 +01:00

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