Fix missing test files

Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
This commit is contained in:
Nathan LeClaire 2015-03-20 16:57:39 -07:00
parent d189baf36c
commit 263c802d34
4 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
package fakedriver

View File

@ -0,0 +1 @@
package auth

View File

@ -0,0 +1,9 @@
package pkgaction
import "testing"
func TestActionValue(t *testing.T) {
if Install.String() != "install" {
t.Fatal("Expected %q but got %q", "install", Install.String())
}
}