Sha256: efad909d7eac1b47ca23451f947e33e9509fe3dcc5d47ee53bd4c99270841410
Contents?: true
Size: 560 Bytes
Versions: 111
Compression:
Stored size: 560 Bytes
Contents
# frozen_string_literal: true require 'avm/applications/base' RSpec.describe ::Avm::Applications::Base do let(:instance) { described_class.new('avm-tools') } ::EacRubyUtils::Rspec .default_setup .stub_eac_config_node(self, ::File.join(__dir__, 'base_spec_fixture.yml')) describe '#id' do it { expect(instance.id).to eq('avm-tools') } end describe '#path_prefix' do it { expect(instance.path_prefix).to eq(['avm-tools']) } end describe '#read_entry' do it { expect(instance.read_entry(:exist)).to eq('exist') } end end
Version data entries
111 entries across 111 versions & 1 rubygems