budget/test/models/income_test.rb

8 lines
135 B
Ruby
Raw Normal View History

2022-11-20 16:02:41 -05:00
require "test_helper"
class IncomeTest < ActiveSupport::TestCase
2023-11-22 18:58:53 -05:00
def test_total
2023-11-22 19:17:45 -05:00
assert_equal 110_000.00, Income.total
2023-11-22 18:58:53 -05:00
end
2022-11-20 16:02:41 -05:00
end