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
e480a38d
Commit
e480a38d
authored
Dec 22, 2017
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pagerduty: adds test for reading auto resolve setting
parent
3a1f52d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pkg/services/alerting/notifiers/pagerduty_test.go
+3
-3
No files found.
pkg/services/alerting/notifiers/pagerduty_test.go
View file @
e480a38d
...
...
@@ -10,7 +10,6 @@ import (
func
TestPagerdutyNotifier
(
t
*
testing
.
T
)
{
Convey
(
"Pagerduty notifier tests"
,
t
,
func
()
{
Convey
(
"Parsing alert notification from settings"
,
func
()
{
Convey
(
"empty settings should return error"
,
func
()
{
json
:=
`{ }`
...
...
@@ -29,7 +28,8 @@ func TestPagerdutyNotifier(t *testing.T) {
Convey
(
"settings should trigger incident"
,
func
()
{
json
:=
`
{
"integrationKey": "abcdefgh0123456789"
"integrationKey": "abcdefgh0123456789",
"autoResolve": false
}`
settingsJSON
,
_
:=
simplejson
.
NewJson
([]
byte
(
json
))
...
...
@@ -46,8 +46,8 @@ func TestPagerdutyNotifier(t *testing.T) {
So
(
pagerdutyNotifier
.
Name
,
ShouldEqual
,
"pagerduty_testing"
)
So
(
pagerdutyNotifier
.
Type
,
ShouldEqual
,
"pagerduty"
)
So
(
pagerdutyNotifier
.
Key
,
ShouldEqual
,
"abcdefgh0123456789"
)
So
(
pagerdutyNotifier
.
AutoResolve
,
ShouldBeFalse
)
})
})
})
}
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