11 lines
		
	
	
		
			355 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			355 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'core/devops-application'
 | |
| 
 | |
| module SpecSupport
 | |
|   BLANK_FILE = File.join(Devops::Application.root, 'spec/support/blank_file')
 | |
| 
 | |
|   def stub_loggers
 | |
|     allow(DevopsLogger).to receive_message_chain('logger.debug')
 | |
|     allow(DevopsLogger).to receive_message_chain('logger.info')
 | |
|     allow(DevopsLogger).to receive_message_chain('logger.error')
 | |
|   end
 | |
| end | 
