浏览代码

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

tags/v0.48.4
Felipe Zipitria 5 年前
父节点
当前提交
569e9276db
没有帐户链接到提交者的电子邮件
共有 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

正在加载...
取消
保存