require "test_helper" class AccountTest < ActiveSupport::TestCase include SyncableInterfaceTest, EntriesTestHelper setup do @account = @syncable = accounts(:depository) @family = families(:dylan_family) end test "can destroy" do assert_difference "Account.count", -1 do @account.destroy end end test "gets short/long subtype label" do investment = Investment.new(subtype: "hsa") account = @family.accounts.create!( name: "Test Investment", balance: 1000, currency: "USD", accountable: investment ) assert_equal "HSA", account.short_subtype_label assert_equal "Health Savings Account", account.long_subtype_label # Test with nil subtype account.accountable.update!(subtype: nil) assert_equal "Investments", account.short_subtype_label assert_equal "Investments", account.long_subtype_label end end