~ubuntu-branches/ubuntu/karmic/chef/karmic

« back to all changes in this revision

Viewing changes to features/provider/template/template.feature

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Timberman, Joshua Timberman, Fabrice Coutadeur
  • Date: 2009-09-30 19:19:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090930191937-1clge7ckxfjm0wx3
Tags: 0.7.10-0ubuntu1
[ Joshua Timberman ]
* New upstream release
* Upstream patch for couchdb 0.10.0 (CHEF-515, quilt patch removed)
* Fix client logging to file (CHEF-287)
* Fix config log_location settings (CHEF-500)
* Requires libmixlib-config-ruby (>= 1.0.12)

[ Fabrice Coutadeur ]
* debian/watch: updated to avoid getting non numerical versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@provider @template
 
2
Feature: Templates
 
3
  In order to easily manage many systems at once
 
4
  As a Developer
 
5
  I want to manage the contents of files programatically
 
6
 
 
7
  Scenario: Render a template from a cookbook
 
8
    Given a validated node
 
9
      And it includes the recipe 'template'
 
10
     When I run the chef-client
 
11
     Then the run should exit '0'
 
12
      And a file named 'template.txt' should contain 'sauce'
 
13