Skip to content

Instantly share code, notes, and snippets.

@scarolan
Created September 11, 2015 18:38
Show Gist options
  • Save scarolan/50aa49dca220cb480f67 to your computer and use it in GitHub Desktop.
Save scarolan/50aa49dca220cb480f67 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe 'motd::default' do
let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
it 'creates an motd correctly' do
expect(chef_run).to create_template('/etc/motd').with(
:user => 'root',
:group => 'root',
:mode => '0644'
)
end end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment