
This commit adds test coverage that verifies the behavior of the loopback related class parameters.
19 lines
404 B
Ruby
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
|