Sha256: 8de4a761e6cff2ade1bc4bfa385f18fd021f3eb3106d6bb3d45e51526c8ed41b
Contents?: true
Size: 792 Bytes
Versions: 3
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true require 'avm/applications/base' RSpec.describe ::Avm::Applications::Base do include_examples 'entries_values', __FILE__, { 'app0' => { 'name' => 'Application 0', 'organization' => nil, 'scm.id' => 'app1', 'scm.type' => 'ScmX', 'scm.url' => 'http://nowhere.net/anypath', 'scm.repos_path' => 'mygroup/app0', 'scm.ssh_username' => 'myuser' }, 'app1' => { 'name' => nil, 'organization' => 'org1', 'scm.id' => nil, 'scm.type' => 'ScmX', 'scm.url' => 'http://nowhere.net/anypath', 'scm.repos_path' => 'mygroup', 'scm.ssh_username' => 'myuser' } } # @return [Avm::Entries::Base] def build_instance(instance_id) described_class.new(instance_id) end end
Version data entries
3 entries across 3 versions & 1 rubygems