phase002 complete

This commit is contained in:
2026-09-15 20:28:07 -06:00
parent 9793cd08bc
commit a3a65c24ed
28 changed files with 656 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
FactoryBot.define do
factory :fuel_entry do
vehicle
association :updated_by_user, factory: :user
odometer { 10_500 }
gallons_pumped { 18.25 }
price_paid { 47.62 }
date { Date.current }
end
end