59f75e6085
Move all dependency tracking to an external class which simplifies the relationships and allows managing Trove without necessarily using packages. This change also cleans up how the client is handled to make it more configurable and match other modules. Finally the reference to the deprecated and non-functional keystone::python class is dropped. Change-Id: I943685fbeb114dead80b7465b8f5c564a0bc9fe0
18 lines
655 B
Ruby
18 lines
655 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'trove::deps' do
|
|
|
|
it 'set up the anchors' do
|
|
is_expected.to contain_anchor('trove::install::begin')
|
|
is_expected.to contain_anchor('trove::install::end')
|
|
is_expected.to contain_anchor('trove::config::begin')
|
|
is_expected.to contain_anchor('trove::config::end')
|
|
is_expected.to contain_anchor('trove::db::begin')
|
|
is_expected.to contain_anchor('trove::db::end')
|
|
is_expected.to contain_anchor('trove::dbsync::begin')
|
|
is_expected.to contain_anchor('trove::dbsync::end')
|
|
is_expected.to contain_anchor('trove::service::begin')
|
|
is_expected.to contain_anchor('trove::service::end')
|
|
end
|
|
end
|