Sha256: fe12bbb9ac82013706bdaa62969e56cbc96f17540b9bbd00b4763e8e74d12987
Contents?: true
Size: 802 Bytes
Versions: 18
Compression:
Stored size: 802 Bytes
Contents
# frozen_string_literal: true require 'avm/applications/base' RSpec.describe Avm::Applications::Base, '#entries' 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
18 entries across 18 versions & 1 rubygems