mirror of
				https://github.com/saltstack-formulas/users-formula.git
				synced 2025-10-31 02:31:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			314 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			314 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| control 'users configuration' do
 | |
|   title 'should match desired lines'
 | |
| 
 | |
|   describe file('/custom/buser') do
 | |
|     its('type') { should eq :directory }
 | |
|     it { should be_owned_by 'buser' }
 | |
|     it { should be_grouped_into 'primarygroup' }
 | |
|     its('mode') { should cmp '0750' }
 | |
|   end
 | |
| end
 |