10 lines
140 B
Ruby
10 lines
140 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module SaasTestHelper
|
||
|
def get_next_url
|
||
|
"https://next.gitlab.com"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
SaasTestHelper.prepend_mod
|