Fabio Rehm
|
54656151cf
|
Convert specs to RSpec 2.14.8 syntax with Transpec
This conversion is done by Transpec 1.10.2 with the following command:
transpec test/unit/
* 507 conversions
from: obj.should
to: expect(obj).to
* 394 conversions
from: == expected
to: eq(expected)
* 260 conversions
from: obj.should_receive(:message)
to: expect(obj).to receive(:message)
* 85 conversions
from: obj.stub(:message)
to: allow(obj).to receive(:message)
* 25 conversions
from: its(:attr) { }
to: describe '#attr' do subject { super().attr }; it { } end
* 19 conversions
from: obj.should_not
to: expect(obj).not_to
* 7 conversions
from: obj.should_not_receive(:message)
to: expect(obj).not_to receive(:message)
* 3 conversions
from: Klass.any_instance.should_receive(:message)
to: expect_any_instance_of(Klass).to receive(:message)
|
2014-03-14 12:02:07 -03:00 |
Teemu Matilainen
|
ee2ae94c25
|
synced_folders/rsync: Install `rsync` on guest if needed
Add new `rsync_installed` and `rsync_install` guest capabilities
to detect and install `rsync`.
Also copy `rsync_pre` capability to all Unix guests.
|
2014-01-31 02:12:57 -03:00 |
Mitchell Hashimoto
|
59218ded68
|
synced_folders/rsync: move rsync logic out to helper
|
2014-01-13 11:01:50 -08:00 |
Mitchell Hashimoto
|
7b2a0716f1
|
synced_folders/rsync: warn if password auth
|
2014-01-10 20:37:11 -08:00 |
Mitchell Hashimoto
|
60f3d224c9
|
synced_folders/rsync: can exclude files
|
2014-01-10 18:01:38 -08:00 |
Mitchell Hashimoto
|
2e3fcf576c
|
synced_folders/rsync: allow guests to execute things before
|
2014-01-10 17:51:44 -08:00 |
Mitchell Hashimoto
|
38fbbb6c56
|
synced_folders/rsync: Initial commit working
|
2014-01-10 17:40:29 -08:00 |