Skip to content

Commit

Permalink
Add failing test and source code
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyhinrichs committed Dec 28, 2015
1 parent f260b79 commit d8dbf3d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/basic.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Copyright Styra, Inc. 2015

package jsonlog

import "fmt"

func Placeholder() {
fmt.Println("Hello there")
}

12 changes: 12 additions & 0 deletions src/basic_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@


package jsonlog

import (
"testing"
)

func TestBasic(t *testing.T) {
t.Errorf("Will fail")
}

0 comments on commit d8dbf3d

Please sign in to comment.