Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
72e7b229
Commit
72e7b229
authored
Aug 30, 2016
by
joe2far
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor engine unit test fix
parent
cc24e3f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
engine_test.go
pkg/engine/engine_test.go
+12
-8
No files found.
pkg/engine/engine_test.go
View file @
72e7b229
...
@@ -290,20 +290,24 @@ global:
...
@@ -290,20 +290,24 @@ global:
t
.
Fatalf
(
"failed to render templates: %s"
,
err
)
t
.
Fatalf
(
"failed to render templates: %s"
,
err
)
}
}
if
out
[
"top/"
+
outerpath
]
!=
"Gather ye rosebuds while ye may"
{
fullouterpath
:=
"top/"
+
outerpath
t
.
Errorf
(
"Unexpected outer: %q"
,
out
[
outerpath
])
if
out
[
fullouterpath
]
!=
"Gather ye rosebuds while ye may"
{
t
.
Errorf
(
"Unexpected outer: %q"
,
out
[
fullouterpath
])
}
}
if
out
[
"top/charts/herrick/"
+
innerpath
]
!=
"Old time is still a-flyin'"
{
fullinnerpath
:=
"top/charts/herrick/"
+
innerpath
t
.
Errorf
(
"Unexpected inner: %q"
,
out
[
innerpath
])
if
out
[
fullinnerpath
]
!=
"Old time is still a-flyin'"
{
t
.
Errorf
(
"Unexpected inner: %q"
,
out
[
fullinnerpath
])
}
}
if
out
[
"top/charts/herrick/charts/deepest/"
+
deepestpath
]
!=
"And this same flower that smiles to-day"
{
fulldeepestpath
:=
"top/charts/herrick/charts/deepest/"
+
deepestpath
t
.
Errorf
(
"Unexpected deepest: %q"
,
out
[
deepestpath
])
if
out
[
fulldeepestpath
]
!=
"And this same flower that smiles to-day"
{
t
.
Errorf
(
"Unexpected deepest: %q"
,
out
[
fulldeepestpath
])
}
}
if
out
[
"top/charts/herrick/charts/deepest/"
+
checkrelease
]
!=
"Tomorrow will be dyin"
{
fullcheckrelease
:=
"top/charts/herrick/charts/deepest/"
+
checkrelease
t
.
Errorf
(
"Unexpected release: %q"
,
out
[
checkrelease
])
if
out
[
fullcheckrelease
]
!=
"Tomorrow will be dyin"
{
t
.
Errorf
(
"Unexpected release: %q"
,
out
[
fullcheckrelease
])
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment