features/vm_shared_folders.feature in virtualbox-0.7.3 vs features/vm_shared_folders.feature in virtualbox-0.7.4
- old
+ new
@@ -2,10 +2,12 @@
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
@@ -14,9 +16,20 @@
@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