notebook/test/controllers/main_controller_test.rb
2021-05-21 17:08:18 -07:00

15 lines
271 B
Ruby

require 'test_helper'
class MainControllerTest < ActionDispatch::IntegrationTest
test "should get root path" do
get root_url
assert_response :success
end
test "should get privacy page" do
get privacy_policy_url
assert_response :success
end
end