소스 검색

test(inspec): add test to check `.vimrc` file is generated properly

tags/v0.48.4
Felipe Zipitria 5 년 전
부모
커밋
569e9276db
No account linked to committer's email address
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      test/integration/vimrc/controls/config_spec.rb

+ 11
- 0
test/integration/vimrc/controls/config_spec.rb 파일 보기

@@ -0,0 +1,11 @@
# 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

Loading…
취소
저장