github.com/bkosm/gompose/v2@v2.3.1/alias_test.go (about)

     1  package gompose
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestAliases(t *testing.T) {
     8  	t.Run("PostgresViaLogs", func(t *testing.T) {
     9  		_ = PostgresViaLogs()
    10  	})
    11  
    12  	t.Run("DownOnSignal", func(t *testing.T) {
    13  		_ = DownOnSignal(customFileOpt)
    14  	})
    15  
    16  	t.Run("Retry", func(t *testing.T) {
    17  		_ = Retry()
    18  	})
    19  }