mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 05:39:39 +02:00
13 lines
199 B
Ruby
13 lines
199 B
Ruby
|
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
|