diff options
author | Ben Burwell <ben@benburwell.com> | 2019-09-16 15:56:31 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-09-16 16:29:16 -0400 |
commit | 679a62a9407c09be0cfb4e22455dca5ae694ce01 (patch) | |
tree | a99e8d61ada1677aee6f63a78545463308c5badd /unusual_test.go | |
parent | 528352cddbe0290653c56a27a4134637ad0624e5 (diff) |
Flesh out
Diffstat (limited to 'unusual_test.go')
-rw-r--r-- | unusual_test.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unusual_test.go b/unusual_test.go new file mode 100644 index 0000000..8faa0af --- /dev/null +++ b/unusual_test.go @@ -0,0 +1,11 @@ +// +build unusual + +package caesar + +import ( + "testing" +) + +func TestUnusual(t *testing.T) { + t.Fatalf("Here is a test I never really want to run") +} |