Sha256: 2de2fab7edde273c7821ff9813ab2730d2df7cc4df590699447a1f1d86a88db4
Contents?: true
Size: 502 Bytes
Versions: 18
Compression:
Stored size: 502 Bytes
Contents
require 'spec_helper' describe Metasploit::Model::Configuration::Child do subject(:child) do described_class.new end context '#configuration' do subject(:configuration) do child.configuration end context 'default' do it { should be_nil } end it 'should be settable' do expected_configuration = double('Configuration') child.configuration = expected_configuration expect(child.configuration).to eq expected_configuration end end end
Version data entries
18 entries across 18 versions & 1 rubygems