crftr/double_double

View on GitHub
lib/double_double/normal_credit_account.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DoubleDouble
  class NormalCreditAccount < Account
    def balance(hash = {})
      child_account_balance(false, hash)
    end
  end
end