grim/convey

Pull in the @ bookmark

2017-05-08, Gary Kramlich
096a15e82c7a
Pull in the @ bookmark
--- a/convey.yml Tue May 02 22:50:49 2017 -0500
+++ b/convey.yml Mon May 08 20:01:05 2017 -0500
@@ -1,8 +1,6 @@
environment:
- CONVEY_VERSION=0.5.0
- GO_PACKAGE=bitbucket.org/rw_grim/convey
-ssh-identities:
- - SHA256:Efrocgd+rvwjDAnHt2jZAcwDqeka0s8Vv7N3m08cVnA
tasks:
# tasks for the default plan
import:
--- a/environment/mapper_test.go Tue May 02 22:50:49 2017 -0500
+++ b/environment/mapper_test.go Mon May 08 20:01:05 2017 -0500
@@ -49,8 +49,8 @@
func (e *environmentSuite) TestPartialMatches(t *testing.T) {
os.Setenv("FOO", "bar")
os.Setenv("BAR", "bonk")
- Expect(Mapper("${FOO}", []string{"FOOBAR"})).To(Equal(""))
- Expect(Mapper("${BARBAZ}", []string{"BAR"})).To(Equal(""))
+ Expect(Mapper("${FOO}", []string{"FOOBAR"})).To(Equal("$FOO"))
+ Expect(Mapper("${BARBAZ}", []string{"BAR"})).To(Equal("$BARBAZ"))
}
func (e *environmentSuite) TestRecursiveMatch(t *testing.T) {