Skip to content

Commit

Permalink
Updated Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry-kp committed Jan 25, 2025
1 parent 57b2ea5 commit b343cdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/controllers/credit_cards_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CreditCardsControllerTest < ActionDispatch::IntegrationTest
accountable_type: "CreditCard",
accountable_attributes: {
available_credit: 5000,
minimum_payment: 25,
minimum_payment: 25.51,
apr: 15.99,
expiration_date: 2.years.from_now.to_date,
annual_fee: 99
Expand All @@ -36,7 +36,7 @@ class CreditCardsControllerTest < ActionDispatch::IntegrationTest
assert_equal 1000, created_account.balance
assert_equal "USD", created_account.currency
assert_equal 5000, created_account.accountable.available_credit
assert_equal 25, created_account.accountable.minimum_payment
assert_equal 25.51, created_account.accountable.minimum_payment
assert_equal 15.99, created_account.accountable.apr
assert_equal 2.years.from_now.to_date, created_account.accountable.expiration_date
assert_equal 99, created_account.accountable.annual_fee
Expand Down
2 changes: 1 addition & 1 deletion test/system/accounts_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class AccountsTest < ApplicationSystemTestCase
test "can create credit card account" do
assert_account_created "CreditCard" do
fill_in "Available credit", with: 1000
fill_in "Minimum payment", with: 25
fill_in "account[accountable_attributes][minimum_payment]", with: 25.51
fill_in "APR", with: 15.25
fill_in "Expiration date", with: 1.year.from_now.to_date
fill_in "Annual fee", with: 100
Expand Down

0 comments on commit b343cdb

Please sign in to comment.