Saltstack Official Users Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # frozen_string_literal: true
-
- control 'vimrc is managed' do
- title 'formula should manage .vimrc'
-
- describe file('/home/vim_user/.vimrc') do
- it { should be_owned_by 'vim_user' }
- its('mode') { should cmp '0644' }
- its('content') { should match(/syntax on/) }
- end
- end
|