auto_test 0.1.9.6 → 0.1.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/authentication.rb +1 -1
- data/lib/auto_test.rb +4 -0
- data/lib/auto_test/version.rb +1 -1
- data/lib/spec/requests/auto_spec.rb +1 -1
- data/lib/test.rb +8 -0
- metadata +1 -1
data/lib/authentication.rb
CHANGED
@@ -150,7 +150,7 @@ module AutoTest
|
|
150
150
|
session.visit get_login_path
|
151
151
|
user = user.class.find(user.id)
|
152
152
|
hash = Hash.new
|
153
|
-
hash["#{Test.get_sessions_array.index(session)}:#{session.current_path}"] =
|
153
|
+
hash["#{Test.get_sessions_array.index(session)}:#{session.current_path}"] = get_login_button
|
154
154
|
Test.add_to_action_path hash
|
155
155
|
Page.check_for_error_code(session)
|
156
156
|
index = get_login_names.index(get_unique_login_attribute_name)
|
data/lib/auto_test.rb
CHANGED
data/lib/auto_test/version.rb
CHANGED
data/lib/test.rb
CHANGED