Saltstack Official Users Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
283B

  1. # frozen_string_literal: true
  2. control 'vimrc is managed' do
  3. title 'formula should manage .vimrc'
  4. describe file('/home/vim_user/.vimrc') do
  5. it { should be_owned_by 'vim_user' }
  6. its('mode') { should cmp '0644' }
  7. its('content') { should match(/syntax on/) }
  8. end
  9. end