Sha256: 5b64cc339f1afdb19276916e083b8f4ff6e38bcd73b930e3b07b231524a837cb
Contents?: true
Size: 379 Bytes
Versions: 92
Compression:
Stored size: 379 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario class Template def self.perform(*args) new.tap do |scenario| yield scenario if block_given? return scenario.perform(*args) end end def perform(*_args) raise NotImplementedError end end end end end
Version data entries
92 entries across 92 versions & 1 rubygems