-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
152 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: go | ||
go: | ||
- 1.4 | ||
- 1.5 | ||
- tip | ||
notificaitons: | ||
email: | ||
recipients: | ||
[email protected] | ||
on_success: change | ||
on_failure: always | ||
install: | ||
- go get -t ./... | ||
- git submodule update --init | ||
script: | ||
- go test -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package main_test | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestCLI(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package application_test | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package application_test | ||
|
||
import "testing" | ||
|
||
// | ||
func TestConfigure(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package application_test | ||
|
||
import "testing" | ||
|
||
// | ||
func TestManage(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package application_test | ||
|
||
import "testing" | ||
|
||
// | ||
func TestStart(t *testing.T) { | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
vendor/application/vendor/middleware/logging/logging_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package logging | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestLogging(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package login | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestLogin(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package testing | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestTesting(t *testing.T) { | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
vendor/application/vendor/transport/http/caching/caching_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package caching | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestCaching(t *testing.T) { | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
vendor/application/vendor/transport/http/content/content_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package content | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestContent(t *testing.T) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package http | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestHTTP(t *testing.T) { | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
vendor/application/vendor/transport/http/server/server_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package server | ||
|
||
import "testing" | ||
|
||
// | ||
func TestMain(m *testing.M) { | ||
m.Run() | ||
} | ||
|
||
// | ||
func TestServer(t *testing.T) { | ||
|
||
} |