mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
* Handle Turbo updates with tabs Fixes #491 * Add Filterable concern for controllers * Add trendline chart * Extract common UI to partials * Series refactor * Put placeholders for calculations in * Add classification generated column to account * Add basic net worth calculation * Add net worth tests * Get net worth graph working * Fix lint errors * Implement asset grouping query * Make trends and series more intuitive * Fully functional dashboard * Remove logging
29 lines
939 B
Ruby
29 lines
939 B
Ruby
require "test_helper"
|
|
|
|
class Account::SyncableTest < ActiveSupport::TestCase
|
|
test "account has no balances until synced" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
|
|
assert_equal 0, account.balances.count
|
|
end
|
|
|
|
test "account has balances after syncing" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
account.sync
|
|
|
|
assert_equal 31, account.balances.count
|
|
end
|
|
|
|
test "stale balances are purged after syncing" do
|
|
account = accounts(:savings_with_valuation_overrides)
|
|
|
|
# Create old, stale balances that should be purged (since they are before account start date)
|
|
account.balances.create!(date: 1.year.ago, balance: 1000)
|
|
account.balances.create!(date: 2.years.ago, balance: 2000)
|
|
account.balances.create!(date: 3.years.ago, balance: 3000)
|
|
|
|
account.sync
|
|
|
|
assert_equal 31, account.balances.count
|
|
end
|
|
end
|