Sha256: 5e33bba463bf0b0cea58f62074d49f493708bf0cfb7666264d9138f4d74408c8

Contents?: true

Size: 1.29 KB

Versions: 18

Compression:

Stored size: 1.29 KB

Contents

Feature: Virtual Machine Shared Folders
  As a virtualbox library user
  I want to read and update shared folders

  Background:
    Given I find a VM identified by "test_vm_A"
    And I remove all shared folders
    And I reload the VM
    And the "shared_folders" relationship

  @unsafe
  Scenario: Reading Shared Folders
    Given a shared folder "foo" exists
    Then the shared folder properties should match

  @unsafe
  Scenario: Creating Shared Folders
    Given no shared folder "bar" exists
    When I create a new shared folder "bar" with path "/baz"
    And I add the new record to the relationship
    And I save the model
    And I reload the VM info
    Then the shared folder "bar" should exist
    Then the shared folder properties should match

  @unsafe
  Scenario: Updating Shared Folders
    Given a shared folder "foo" exists
    When I update the shared folder named "foo":
      | attribute | value     |
      | host_path | /new_path |
    And I save the model
    And I reload the VM info
    Then the shared folder properties should match

  @unsafe
  Scenario: Deleting Shared Folders
    Given a shared folder "foo" exists
    When I delete the shared folder "foo"
    And I reload the VM info
    Then the shared folder "foo" should not exist
    Then the shared folder properties should match

Version data entries

18 entries across 18 versions & 3 rubygems

Version Path
virtualbox-0.9.2 features/vm_shared_folders.feature
virtualbox-0.9.1 features/vm_shared_folders.feature
virtualbox-0.9.0 features/vm_shared_folders.feature
virtualbox-0.8.6 features/vm_shared_folders.feature
virtualbox-0.8.5 features/vm_shared_folders.feature
virtualbox-0.8.4 features/vm_shared_folders.feature
velir_virtualbox-0.8.4 features/vm_shared_folders.feature
virtualbox-0.8.3 features/vm_shared_folders.feature
virtualbox-0.8.2 features/vm_shared_folders.feature
virtualbox-0.8.1 features/vm_shared_folders.feature
virtualbox-0.8.0 features/vm_shared_folders.feature
virtualbox-0.7.9 features/vm_shared_folders.feature
virtualbox-0.7.8 features/vm_shared_folders.feature
virtualbox-0.7.7 features/vm_shared_folders.feature
virtualbox-0.7.6 features/vm_shared_folders.feature
bbrowning-virtualbox-0.7.6.dev features/vm_shared_folders.feature
virtualbox-0.7.5 features/vm_shared_folders.feature
virtualbox-0.7.4 features/vm_shared_folders.feature