Skip to content

Commit

Permalink
Remove duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Jun 14, 2024
1 parent e4342c6 commit c6e8ea0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions exercises/practice/bank-account/bank_account_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,6 @@ def test_cannot_check_balance_of_closed_account
assert_raises(ArgumentError, "You can't check the balance of a closed account") { bank_account.balance }
end

def test_cannot_check_balance_of_closed_account
skip
bank_account = BankAccount.new
bank_account.open
bank_account.close
assert_raises(ArgumentError, "You can't check the balance of a closed account") { bank_account.balance }
end

def test_cannot_check_balance_of_closed_account
skip
bank_account = BankAccount.new
bank_account.open
bank_account.close
assert_raises(ArgumentError, "You can't check the balance of a closed account") { bank_account.balance }
end

def test_cannot_deposit_into_closed_account
skip
bank_account = BankAccount.new
Expand Down

0 comments on commit c6e8ea0

Please sign in to comment.