mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
11 lines
233 B
Ruby
11 lines
233 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class DepositoriesControllerTest < ActionDispatch::IntegrationTest
|
||
|
include AccountableResourceInterfaceTest
|
||
|
|
||
|
setup do
|
||
|
sign_in @user = users(:family_admin)
|
||
|
@account = accounts(:depository)
|
||
|
end
|
||
|
end
|