Skip to content

Commit

Permalink
tests: remove --provider from vagrant up commands
Browse files Browse the repository at this point in the history
Vagrant is smart enough to detect what environment it is running in.
Rather than try to switch and provide the right provider name on each
platform, let's just let Vagrant detect it.
  • Loading branch information
dustymabe committed Jul 20, 2016
1 parent b244de9 commit 2442e77
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions features/user_home_dir_mount.feature
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ Feature: Mount of user home directory
end
end
"""
When I successfully run `bundle exec vagrant up --provider <provider>`
Then stdout from "bundle exec vagrant up --provider <provider>" should contain "Installing SSHFS client..."
And stdout from "bundle exec vagrant up --provider <provider>" should contain "Mounting SSHFS shared folder..."
And stdout from "bundle exec vagrant up --provider <provider>" should contain "Folder Successfully Mounted!"
When I successfully run `bundle exec vagrant up`
Then stdout from "bundle exec vagrant up" should contain "Installing SSHFS client..."
And stdout from "bundle exec vagrant up" should contain "Mounting SSHFS shared folder..."
And stdout from "bundle exec vagrant up" should contain "Folder Successfully Mounted!"
And user's home directory should be mounted

Examples:
| box | provider |
| centos/7 | virtualbox |
| box |
| centos/7 |


0 comments on commit 2442e77

Please sign in to comment.