forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove signup system test (publiclab#8465)
- Loading branch information
1 parent
49286dd
commit 67801d1
Showing
1 changed file
with
0 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,4 @@ | ||
require "application_system_test_case" | ||
|
||
class SignupFormTest < ApplicationSystemTestCase | ||
def setup | ||
visit "/" | ||
end | ||
|
||
test "the signup form is validated on page reload" do | ||
visit "/signup" | ||
|
||
#Signs up with registered email | ||
fill_in("username-signup", with: "abc") | ||
fill_in("email", with: "[email protected]") | ||
fill_in("password1", with: "secretive") | ||
fill_in("password-confirmation", with: "secretive") | ||
|
||
find("#create-form #signup-button").click() | ||
path = URI.parse(current_url).request_uri | ||
assert_equal path, "/signup" | ||
#Searches for error | ||
# error_msg = find("#errorExplanation li").text.gsub('×', '').strip() | ||
|
||
# assert_includes(error_msg, "Spam detection -- It doesn't seem like you are a real person!" ) | ||
# assert_selector("#error-message #errorExplanation", text: "Email") | ||
# assert_selector("#errorExplanation li", text: "Spam detection -- It doesn't seem like you are a real person! If you disagree or are having trouble, please see https://publiclab.org/registration-test.") | ||
|
||
fill_in("username-signup", with: "abc") | ||
fill_in("email", with: "[email protected]") | ||
fill_in("password1", with: "secretive") | ||
fill_in("password-confirmation", with: "secretive") | ||
#Checks if submit button is enabled | ||
find_button("signup-button") | ||
end | ||
end |