- This is a demo app created for the purpose of a Rails technical interview. It is a simple Bank, that has users, accounts and transactions.
- With a focus on the controllers and models, there are a few common Rails mistakes in this app. Please identify them, and explain how you would fix them.
- Please ensure you have SQLite installed, and are able to run
rails db:seed
and start the Rails serverrails s
- Please write the missing test in
spec/models/account_spec.rb
to test the#update_balance
method.