From 889b78b1a932b40a3aba2fb7a79cbe7c07e6faea Mon Sep 17 00:00:00 2001 From: Seth Chisamore Date: Fri, 12 Oct 2012 16:10:40 -0400 Subject: [OC-3564] remove cucumber features Integration testing of Chef Server is now done with `chef-pedant` in Chef 11+: https://github.com/opscode/chef-pedant --- .../provider/directory/create_directories.feature | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 features/provider/directory/create_directories.feature (limited to 'features/provider/directory/create_directories.feature') diff --git a/features/provider/directory/create_directories.feature b/features/provider/directory/create_directories.feature deleted file mode 100644 index c9587ae0bd..0000000000 --- a/features/provider/directory/create_directories.feature +++ /dev/null @@ -1,41 +0,0 @@ -@provider @provider_directory -Feature: Create Directories - In order to save time - As a Developer - I want to create directories - - Scenario: Create a directory - Given a validated node - And it includes the recipe 'directory_provider::create' - When I run the chef-client - Then the run should exit '0' - And a directory named 'isis' should exist - - Scenario: Set the owner of a created directory - Given a validated node - And it includes the recipe 'directory_provider::create' - When I run the chef-client - Then the run should exit '0' - And the directory named 'isis' should be owned by 'nobody' - - Scenario: Change the owner of a created directory - Given a validated node - And it includes the recipe 'directory_provider::owner_update' - When I run the chef-client - Then the run should exit '0' - And the directory named 'isis' should be owned by 'root' - - Scenario: Set the accessibility of a created directory - Given a validated node - And it includes the recipe 'directory_provider::set_the_accessibility_of_a_created_directory' - When I run the chef-client - Then the run should exit '0' - And the directory named 'octal0644' should have octal mode '0644' - And the directory named 'octal2644' should have octal mode '2644' - And the directory named 'decimal644' should have decimal mode '644' - And the directory named 'decimal2644' should have decimal mode '2644' - And the directory named 'string644' should have octal mode '644' - And the directory named 'string0644' should have octal mode '0644' - And the directory named 'string2644' should have octal mode '2644' - - -- cgit v1.2.1