15 lines
252 B
Ruby
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
|