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
def test_total
assert_equal 110_000.00, Income.total
end
2022-11-20 16:02:41 -05:00
end