fix wrong env var. name case
diff --git a/kitchen-init.sh b/kitchen-init.sh
index 26c5219..c556c10 100755
--- a/kitchen-init.sh
+++ b/kitchen-init.sh
@@ -35,10 +35,11 @@
 # CONFIGURE & SCAFFOLD TEST DIR
 ###################################
 test -d tests/integration || {
-  for suite in $SUITES; do
-    mkdir -p tests/integration/$suite/$VERIFIER
+  for suite in $suites; do
+    mkdir -p tests/integration/$suite/$verifier
+    touch    tests/integration/$suite/$verifier/default_spec.rb
   done
-  mkdir -p tests/integration/helpers/$VERIFIER/
+  mkdir -p tests/integration/helpers/$verifier/
   touch $_/spec_helper.rb
 }