Skip to content

Commit 091984f

Browse files
authored
Rel 2.3.0 rc6 (#95)
* 2.3 backport (#88) * Version v2.3.0-RC2 * fix DB connect test message (#87) * Rename docker dir to conf, closes #85 * Backport recent image changes to master * Backport recent image changes to master * ignore tests in docker build context * add api test (#93) * Cachet Release v2.3.0-RC6
1 parent f0fea30 commit 091984f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ Changelog.md
88
Makefile
99
docker-compose.yml
1010
.travis.yml
11+
test

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:jessie
33
MAINTAINER Alt Three <[email protected]>
44

55
ARG cachet_ver
6-
ENV cachet_ver v2.3.0-RC5
6+
ENV cachet_ver v2.3.0-RC6
77

88
# Using debian packages instead of compiling from scratch
99
RUN DEBIAN_FRONTEND=noninteractive \

test/test.full.bats

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ load "lib/output"
3030
assert_output -l 0 $'HTTP/1.1 200 OK\r'
3131
}
3232

33+
@test "[$TEST_FILE] curl API ping" {
34+
run curl_container docker_nginx_1 /api/v1/ping
35+
assert_output -l 0 $'{"data":"Pong!"}'
36+
}
37+
3338
@test "[$TEST_FILE] stop all bats containers" {
3439
stop_bats_containers
3540
}

0 commit comments

Comments
 (0)