Skip to content
Snippets Groups Projects
Select Git revision
  • c13fa62f93ee0a39b0d1e1c4c6a1e343f077ae32
  • master default
  • json_fix
  • puneetk-patch-1
4 results

pre-commit_semantic-release.sh

Blame
  • config_spec.rb 313 B
    # frozen_string_literal: true
    
    control 'Postgres configuration' do
      title 'should include the directory'
    
      describe file('/srv/my_tablespace') do
        it { should be_directory }
        it { should be_owned_by 'postgres' }
        it { should be_grouped_into 'postgres' }
        its('mode') { should cmp '0700' }
      end
    end