Sha256: 3366ab3be74e3aa51d653004a7e6df1eb78fc3649e10cfe226896a7739d4ea0c
Contents?: true
Size: 1.13 KB
Versions: 61
Compression:
Stored size: 1.13 KB
Contents
module Gitlab module QA module Scenario module Test module Integration class Mattermost < Scenario::Template def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.network = 'test' mattermost_hostname = "mattermost.#{gitlab.network}" mattermost_external_url = "http://#{mattermost_hostname}" gitlab.add_network_alias(mattermost_hostname) gitlab.omnibus_configuration << <<~OMNIBUS mattermost_external_url '#{mattermost_external_url}'; OMNIBUS gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Integration::Mattermost' specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, mattermost_external_url, *rspec_args] end end end end end end end end end end
Version data entries
61 entries across 61 versions & 1 rubygems