puppet-swift/spec/defines/swift_storage_loopback_spec.rb
Dan Bode 4691b3929d Add spec tests for additional loopback parameter.
This commit adds test coverage that verifies the
behavior of the loopback related class parameters.
2012-07-23 15:04:14 -07:00

19 lines
404 B
Ruby

require 'spec_helper'
describe 'swift::storage::loopback' do
# TODO add more unit tests
let :title do
'dans_disk'
end
it { should contain_swift__storage__xfs('dans_disk').with(
:device => '/srv/loopback-device/dans_disk',
:mnt_base_dir => '/srv/node',
:byte_size => '1024',
:subscribe => 'Exec[create_partition-dans_disk]',
:loopback => true
) }
end