Parcourir la source

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

tags/v0.48.4
Felipe Zipitria il y a 5 ans
Parent
révision
569e9276db
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. +11
    -0
      test/integration/vimrc/controls/config_spec.rb

+ 11
- 0
test/integration/vimrc/controls/config_spec.rb Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer