budget/test/models/income_test.rb
Andrew Tomaka e1a7f4fbbd
All checks were successful
continuous-integration/drone/push Build is passing
Add some model tests (#9)
Reviewed-on: #9
2023-11-22 21:41:03 -05:00

7 lines
135 B
Ruby

require "test_helper"
class IncomeTest < ActiveSupport::TestCase
def test_total
assert_equal 110_000.00, Income.total
end
end