I have few recipes and I want to test them using kitchen.
I am new to kitchen and I was going through their docs which is really good.
---
driver:
name: ssh
provisioner:
name: chef_solo
platforms:
- name: ubuntu-14.04
driver:
hostname: 123.456.789.10
username: root
password: blahblah
suites:
- name: default
run_list:
- recipe[redis::default]
attributes:
I have a lot of cookbooks ,
Lvl1 Main Folder
Lvl2|--> kitchen init
|-->cookbook
Lvl3 |--> A
|--> recipes
|--> B
|--> recipes
So basically I have way too many recipes inside a main cookbook folder.
Is it possible to run kitchen test on level 1 itself by mentioning it under run_list
somehow?
Hope I am clear.
I basically want to test it on a higher level since by cookbooks are all interdependent.