Sha256: 7c151fe3ac189ffcdf0a1eab4f5f93b048632eb3d597698d233a1f7b31d25d3f

Contents?: true

Size: 1.48 KB

Versions: 9

Compression:

Stored size: 1.48 KB

Contents

Feature: veewee box validation
  As a valid veewee box
  I need to comply to a set of rules

  @vmfusion @virtualbox @kvm @parallels
  Scenario: Valid definition
    Given a veeweebox was build
    And I run "whoami" over ssh
    Then I should see the provided username in the output

  @vmfusion @virtualbox @kvm @parallels
  Scenario: Checking sudo
    Given a veeweebox was build
    And I sudorun "whoami" over ssh
    Then I should see "root" in the output

  @vmfusion @virtualbox @kvm @parallels
  Scenario: Checking ruby
    Given a veeweebox was build
    And I run ". /etc/profile ;ruby --version 2> /dev/null 1> /dev/null;  echo $?" over ssh
    Then I should see "0" in the output

  @vmfusion @virtualbox @kvm @parallels
  Scenario: Checking gem
    Given a veeweebox was build
    And I run ". /etc/profile; gem --version 2> /dev/null 1> /dev/null ; echo $?" over ssh
    Then I should see "0" in the output

  @chef
  Scenario: Checking chef
    Given a veeweebox was build
    And I run ". /etc/profile ;chef-client --version 2> /dev/null 1>/dev/null; echo $?" over ssh
    Then I should see "0" in the output

  @puppet
  Scenario: Checking puppet
    Given a veeweebox was build
    And I run ". /etc/profile ; puppet --version 2> /dev/null 1>/dev/null; echo $?" over ssh
    Then I should see "0" in the output

  @vagrant
  Scenario: Checking shared folders
    Given a veeweebox was build
    And I run "mount|grep veewee-validation" over ssh
    Then I should see "veewee-validation" in the output

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
veewee-atlassian-0.3.11 validation/veewee.feature
veewee-0.3.7 validation/veewee.feature
veewee-0.3.6 validation/veewee.feature
veewee-0.3.5 validation/veewee.feature
veewee-0.3.4 validation/veewee.feature
veewee-0.3.3 validation/veewee.feature
veewee-0.3.2 validation/veewee.feature
veewee-0.3.1 validation/veewee.feature
veewee-0.3.0.beta2 validation/veewee.feature