Sha256: 494e27984b6a0763551fc2b660ea8f4fedb4e436227a6cd2cde308edf6d0a5f3
Contents?: true
Size: 1.51 KB
Versions: 18
Compression:
Stored size: 1.51 KB
Contents
module Origen module Tester class Doc module Generator class TestGroup attr_accessor :name, :version, :append_version include Enumerable def initialize(name, _options = {}) @name = name @store = [] @append_version = true end def name if unversioned_name if version && @append_version "#{unversioned_name}_v#{version}" else unversioned_name.to_s end end end def to_yaml(options = {}) y = {} y['group'] = @store.map { |t| t.to_yaml(options) } y end def unversioned_name if @name if @name =~ /grp$/ @name else "#{@name}_grp" end end end def <<(instance) @store << instance end def size @store.size end def each @store.each { |ins| yield ins } end def ==(other_instance_group) self.class == other_instance_group.class && unversioned_name.to_s == other_instance_group.unversioned_name.to_s && size == other_instance_group.size && self.all? do |ins| other_instance_group.any? { |other_ins| ins == other_ins } end end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems