From 69b513acc2c2e2fadeac5c2ce48b16895ebecb66 Mon Sep 17 00:00:00 2001 From: Alex Pop Date: Fri, 8 Apr 2016 15:36:15 +0100 Subject: [PATCH] add complete profile example to readme --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index c38fd45..d445e33 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,28 @@ By default `kitchen-inspec` expects test to be in `test/integration/%suite%` dir └── web_spec.rb ``` +### Directory Structure with complete profile + +A complete profile is used here, including a custom inspec resource named `gordon_config`: + +``` +. +├── Berksfile +├── Gemfile +├── README.md +├── metadata.rb +├── recipes +│   ├── default.rb +│   └── nginx.rb +└── test + └── integration + └── default + ├── controls + │   └── gordon.rb + ├── inspec.yml + └── libraries + └── gordon_config.rb +``` ### Combination with other testing frameworks