1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 13:49:39 +02:00
Maybe/test/system/accounts_test.rb

19 lines
406 B
Ruby
Raw Normal View History

2024-02-06 08:19:31 +11:00
require "application_system_test_case"
class AccountsTest < ApplicationSystemTestCase
setup do
sign_in @user = users(:bob)
end
# test "should create account" do
# click_on "New account"
# click_on "Credit Card"
# within "form" do
# fill_in "Name", with: "VISA"
# fill_in "Balance", with: "1000"
# click_on "Submit"
# end
# assert_text "$1,000"
# end
2024-02-06 08:19:31 +11:00
end