mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 11:34:13 +00:00
19 lines
406 B
Ruby
19 lines
406 B
Ruby
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
|
|
end
|