Skip to content

Commit

Permalink
test-kitchen first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gondoi committed Jan 4, 2013
1 parent 1bf1aba commit 694a813
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
Gemfile.lock Gemfile.lock
tmp/ tmp/
# Test Kitchen
.kitchen
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source :rubygems

gem 'test-kitchen'
5 changes: 5 additions & 0 deletions test/kitchen/Kitchenfile
@@ -0,0 +1,5 @@
cookbook "drupal" do

configuration "default"

end
5 changes: 5 additions & 0 deletions test/kitchen/cookbooks/drupal_test/metadata.rb
@@ -0,0 +1,5 @@
maintainer "BK Box"
maintainer_email "bk@theboxes.org"
license "Apache 2.0"
description "Acceptance tests for drupal"
version "0.1.0"
3 changes: 3 additions & 0 deletions test/kitchen/cookbooks/drupal_test/recipes/default.rb
@@ -0,0 +1,3 @@
node.set['mysql']['server_debian_password'] = "ilikerandompasswords"
node.set['mysql']['server_root_password'] = "ilikerandompasswords"
node.set['mysql']['server_repl_password'] = "ilikerandompasswords"

0 comments on commit 694a813

Please sign in to comment.