diff options
author | Nan Liu <nan@puppetlabs.com> | 2012-08-20 10:22:04 -0700 |
---|---|---|
committer | Nan Liu <nan@puppetlabs.com> | 2012-08-20 10:22:04 -0700 |
commit | 5e4aa75d208e998f04da9fcc5210addebbad5e2e (patch) | |
tree | 6e62e1f060f18203fbe58d4b2beef1ec297efa07 | |
parent | ec833cbffc337c6733349061585ce532e4040991 (diff) | |
download | puppet-tftp-5e4aa75d208e998f04da9fcc5210addebbad5e2e.tar.gz puppet-tftp-5e4aa75d208e998f04da9fcc5210addebbad5e2e.tar.bz2 |
Whitespace changes in rspec file.
-rw-r--r-- | spec/classes/tftp_spec.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/spec/classes/tftp_spec.rb b/spec/classes/tftp_spec.rb index 948f86d..12fefa9 100644 --- a/spec/classes/tftp_spec.rb +++ b/spec/classes/tftp_spec.rb @@ -10,10 +10,10 @@ describe 'tftp', :type => :class do should contain_file('/etc/default/tftpd-hpa') should contain_package('tftpd-hpa') should contain_service('tftpd-hpa').with({ - 'ensure' => 'running', - 'enable' => true, - 'hasstatus' => false, - 'provider' => nil, + 'ensure' => 'running', + 'enable' => true, + 'hasstatus' => false, + 'provider' => nil, }) } end @@ -28,9 +28,9 @@ describe 'tftp', :type => :class do should contain_file('/etc/default/tftpd-hpa') should contain_service('tftpd-hpa').with({ 'ensure' => 'running', - 'enable' => true, - 'hasstatus' => true, - 'provider' => 'upstart', + 'enable' => true, + 'hasstatus' => true, + 'provider' => 'upstart', }) } end @@ -45,11 +45,11 @@ describe 'tftp', :type => :class do }) should contain_service('tftpd-hpa').with({ - 'ensure' => 'running', - 'enable' => 'true', - 'hasstatus' => false, - 'provider' => 'base', - 'start' => '/usr/sbin/in.tftpd -l -a 0.0.0.0:69 -u nobody --secure /var/lib/tftpboot', + 'ensure' => 'running', + 'enable' => 'true', + 'hasstatus' => false, + 'provider' => 'base', + 'start' => '/usr/sbin/in.tftpd -l -a 0.0.0.0:69 -u nobody --secure /var/lib/tftpboot', }) } end |