Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
961c31a7
Commit
961c31a7
authored
Jun 03, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test(util): add unit test for string util
parent
d1a345bb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
pkg/util/strings.go
+0
-0
pkg/util/strings_test.go
+15
-0
No files found.
pkg/util/strings.go
View file @
961c31a7
pkg/util/strings_test.go
0 → 100644
View file @
961c31a7
package
util
import
(
"testing"
.
"github.com/smartystreets/goconvey/convey"
)
func
TestStringsUtil
(
t
*
testing
.
T
)
{
Convey
(
"Falling back until none empty string"
,
t
,
func
()
{
So
(
StringsFallback2
(
"1"
,
"2"
),
ShouldEqual
,
"1"
)
So
(
StringsFallback2
(
""
,
"2"
),
ShouldEqual
,
"2"
)
So
(
StringsFallback3
(
""
,
""
,
"3"
),
ShouldEqual
,
"3"
)
})
}
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