mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			185 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			185 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package installers
 | 
						|
 | 
						|
import "testing"
 | 
						|
 | 
						|
func TestDeployManager_LoadFiles(t *testing.T) {
 | 
						|
	files := NewDeployManager().LoadFiles()
 | 
						|
	for _, file := range files {
 | 
						|
		t.Logf("%#v", file)
 | 
						|
	}
 | 
						|
}
 |