mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* Balance sheet cache layer with cache-busting * Update family cache timestamps during Sync * Less blocking sync loaders * Consolidate family data caching key logic * Fix turbo stream broadcasts * Remove dev delay * Add back account group sorting
12 lines
288 B
Ruby
12 lines
288 B
Ruby
require "test_helper"
|
|
|
|
class AccountableSparklinesControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in @user = users(:family_admin)
|
|
end
|
|
|
|
test "should get show for depository" do
|
|
get accountable_sparkline_url("depository")
|
|
assert_response :success
|
|
end
|
|
end
|