tests: add autocomplete system tests.

This commit is contained in:
evazion
2019-09-17 18:14:33 -05:00
parent 4dfa645550
commit 02354e83fe
5 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
module SystemTestHelper
def signup(name, password: "password")
visit new_user_path
fill_in "Name", with: name
fill_in "Password", with: password
fill_in "Password confirmation", with: password
click_button "Sign up"
end
end