1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 05:39:39 +02:00
Maybe/test/controllers/pages_controller_test.rb

13 lines
199 B
Ruby
Raw Normal View History

require "test_helper"
class PagesControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in users(:bob)
end
test "dashboard" do
get root_path
assert_response :ok
end
end