You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to puppet...@googlegroups.com
Hi!
I'm working on several puppet modules and try to run the rspec tests in
a vagrant vm (virtualbox). The module directory is mounted to the vm in
/vagrant.
Normally rspec-puppet seems to create a symlink in spec/fixtures/modules
to the module directory. This symlink doesn't work on the virtualbox
shared folder.
My workaround in .fixtures.yml is:
```
fixtures:
repositories:
mymodule: "file://#{source_dir}"
```
Is this workaround okay or do you have a better solution?