mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-10-31 03:39:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package azure
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestTrivialCNMFunctions(t *testing.T) {
 | |
| 	assert := assert.New(t)
 | |
| 	cloud := CloudNodeManager{}
 | |
| 
 | |
| 	assert.NotEmpty(cloud.Image())
 | |
| 	assert.NotEmpty(cloud.Path())
 | |
| 	assert.NotEmpty(cloud.ExtraArgs())
 | |
| 	assert.True(cloud.Supported())
 | |
| }
 | 
