From 49b1691ac09bb443b60c77e0cc97bc0fad23521f Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Sun, 6 Jan 2019 14:25:05 -0800 Subject: [PATCH] doc: description of examples/ and tests/ --- examples/doc.go | 2 ++ tests/README.md | 3 +++ tests/doc.go | 2 ++ 3 files changed, 7 insertions(+) create mode 100644 examples/doc.go create mode 100644 tests/README.md create mode 100644 tests/doc.go diff --git a/examples/doc.go b/examples/doc.go new file mode 100644 index 0000000..15b9749 --- /dev/null +++ b/examples/doc.go @@ -0,0 +1,2 @@ +// Package examples provides examples of avo usage. +package examples diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..a22fb10 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,3 @@ +# tests + +System-level testing of `avo`. diff --git a/tests/doc.go b/tests/doc.go new file mode 100644 index 0000000..f6ca2d7 --- /dev/null +++ b/tests/doc.go @@ -0,0 +1,2 @@ +// Package tests contains avo integration tests. +package tests