From 6c431309799d18e36b1627c8317372fd43d0d512 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Tue, 10 Sep 2019 14:29:29 -0700 Subject: [PATCH] specsuite: Move the Go testing stub into the specsuite directory The separate "spectests" directory was an artifact of our former nesting of the main package under a "hcl" directory. However, it was confusing to have both specsuite and spectests directories at the top level, so instead we'll just conflate these two by putting the automatic Go testing helper into the specsuite directory. --- {spectests => specsuite}/.gitignore | 0 {spectests => specsuite}/spec_test.go | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {spectests => specsuite}/.gitignore (100%) rename {spectests => specsuite}/spec_test.go (100%) diff --git a/spectests/.gitignore b/specsuite/.gitignore similarity index 100% rename from spectests/.gitignore rename to specsuite/.gitignore diff --git a/spectests/spec_test.go b/specsuite/spec_test.go similarity index 100% rename from spectests/spec_test.go rename to specsuite/spec_test.go