From 9638ecbcbc5b03e65961c21492df378b90a75485 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Sun, 4 Feb 2018 04:15:06 -0800 Subject: Add QA specs for LDAP login --- qa/qa.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'qa/qa.rb') diff --git a/qa/qa.rb b/qa/qa.rb index 8630e2a522c..3a4c2d575f1 100644 --- a/qa/qa.rb +++ b/qa/qa.rb @@ -64,6 +64,7 @@ module QA autoload :Instance, 'qa/scenario/test/instance' module Integration + autoload :Ldap, 'qa/scenario/test/integration/ldap' autoload :Mattermost, 'qa/scenario/test/integration/mattermost' end -- cgit v1.2.1 From 1264e2b6e8ce53f578255e9296875947845431bf Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Fri, 2 Feb 2018 00:35:33 +0800 Subject: WIP --- qa/qa.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qa/qa.rb') diff --git a/qa/qa.rb b/qa/qa.rb index 8630e2a522c..b5536a449f1 100644 --- a/qa/qa.rb +++ b/qa/qa.rb @@ -116,6 +116,10 @@ module QA autoload :Show, 'qa/page/project/pipeline/show' end + module Job + autoload :Show, 'qa/page/project/job/show' + end + module Settings autoload :Common, 'qa/page/project/settings/common' autoload :Advanced, 'qa/page/project/settings/advanced' -- cgit v1.2.1 From 739916748d692194c561b7ad07cd33d867079bed Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Tue, 6 Feb 2018 16:27:37 -0800 Subject: Address review comments for LDAP QA test --- qa/qa.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qa/qa.rb') diff --git a/qa/qa.rb b/qa/qa.rb index 3a4c2d575f1..3c7778a4260 100644 --- a/qa/qa.rb +++ b/qa/qa.rb @@ -64,7 +64,7 @@ module QA autoload :Instance, 'qa/scenario/test/instance' module Integration - autoload :Ldap, 'qa/scenario/test/integration/ldap' + autoload :LDAP, 'qa/scenario/test/integration/ldap' autoload :Mattermost, 'qa/scenario/test/integration/mattermost' end -- cgit v1.2.1 From 59d49f70c3b36e633b78e82fe3bd85b53f06900b Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Tue, 13 Feb 2018 23:35:45 +0800 Subject: Rename Git::Repository::Location to Git::Location --- qa/qa.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'qa/qa.rb') diff --git a/qa/qa.rb b/qa/qa.rb index c1b5d278186..c6de8625f3d 100644 --- a/qa/qa.rb +++ b/qa/qa.rb @@ -169,6 +169,7 @@ module QA # module Git autoload :Repository, 'qa/git/repository' + autoload :Location, 'qa/git/location' end ## -- cgit v1.2.1