Merge pull request #174 from myii/test/prevent-package-control-for-bsd
test(packages_spec): prevent control for `bsd` family
This commit is contained in:
		
						commit
						554633d7c0
					
				| @ -1,12 +1,19 @@ | ||||
| # Overide by Platform | ||||
| package_name = 'openssh-server' | ||||
| if platform[:family] == 'suse' | ||||
|   package_name = 'openssh' | ||||
| end | ||||
| package_name = | ||||
|   case platform[:family] | ||||
|   when 'suse' | ||||
|     'openssh' | ||||
|   else | ||||
|     'openssh-server' | ||||
|   end | ||||
| 
 | ||||
| control 'openssh package' do | ||||
|   title 'should be installed' | ||||
| 
 | ||||
|   only_if do | ||||
|     platform.family != 'bsd' | ||||
|   end | ||||
| 
 | ||||
|   describe package(package_name) do | ||||
|     it { should be_installed } | ||||
|   end | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Imran Iqbal
						Imran Iqbal