Skip to content

Commit

Permalink
+test stubs. +travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicerobot committed Jul 24, 2016
1 parent 4a82939 commit e030140
Show file tree
Hide file tree
Showing 14 changed files with 152 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
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
13 changes: 13 additions & 0 deletions app_test.go
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) {

}
8 changes: 8 additions & 0 deletions vendor/application/application_test.go
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()
}
8 changes: 8 additions & 0 deletions vendor/application/configure_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package application_test

import "testing"

//
func TestConfigure(t *testing.T) {

}
8 changes: 8 additions & 0 deletions vendor/application/manage_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package application_test

import "testing"

//
func TestManage(t *testing.T) {

}
8 changes: 8 additions & 0 deletions vendor/application/start_test.go
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 vendor/application/vendor/middleware/logging/logging_test.go
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) {

}
13 changes: 13 additions & 0 deletions vendor/application/vendor/service/login/login_test.go
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) {

}
13 changes: 13 additions & 0 deletions vendor/application/vendor/service/testing/testing_test.go
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 vendor/application/vendor/transport/http/caching/caching_test.go
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 vendor/application/vendor/transport/http/content/content_test.go
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) {

}
3 changes: 0 additions & 3 deletions vendor/application/vendor/transport/http/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ type ChainResponseEncoders func(next httptransport.EncodeResponseFunc) httptrans

//
type ChainRequestDecoders func(next httptransport.DecodeRequestFunc) httptransport.DecodeRequestFunc

//
type ChainRequestResponse func(next httptransport.DecodeRequestFunc) (httptransport.DecodeRequestFunc, httptransport.EncodeResponseFunc)
13 changes: 13 additions & 0 deletions vendor/application/vendor/transport/http/http_test.go
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 vendor/application/vendor/transport/http/server/server_test.go
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) {

}

0 comments on commit e030140

Please sign in to comment.