2023-04-26 14:54:36 +00:00
|
|
|
package config_tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2023-07-15 14:10:40 +00:00
|
|
|
func TestAutoLoad(t *testing.T) {
|
2023-04-26 14:54:36 +00:00
|
|
|
b := load(t, "./autoload_git")
|
2023-07-15 14:10:40 +00:00
|
|
|
assert.NotEqual(t, "", b.Config.Bundle.Git.Branch)
|
|
|
|
assert.Contains(t, b.Config.Bundle.Git.OriginURL, "/cli")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrongBranch(t *testing.T) {
|
|
|
|
err := loadEnvironmentWithError(t, "./autoload_git", "production")
|
|
|
|
assert.ErrorContains(t, err, "not on the right Git branch")
|
2023-04-26 14:54:36 +00:00
|
|
|
}
|