Fabio Rehm
|
9838d32c2d
|
action/forward_ports: Merge port forwarding with sudo specs into a single file [GH-259]
|
2014-05-03 23:31:43 -03:00 |
|
Fabio Rehm
|
2e2c2fad56
|
Convert specs to RSpec 2.99.0.beta2 syntax with Transpec
This conversion is done by Transpec 1.10.2 with the following command:
transpec
* 46 conversions
from: obj.should
to: expect(obj).to
* 20 conversions
from: obj.stub(:message)
to: allow(obj).to receive(:message)
* 10 conversions
from: == expected
to: eq(expected)
* 6 conversions
from: obj.should_receive(:message)
to: expect(obj).to receive(:message)
* 5 conversions
from: obj.should_not
to: expect(obj).not_to
* 5 conversions
from: Klass.any_instance.stub(:message) { |arg| }
to: Klass.any_instance.stub(:message) { |instance, arg| }
* 5 conversions
from: Klass.any_instance.stub(:message)
to: allow_any_instance_of(Klass).to receive(:message)
* 1 conversion
from: lambda { }.should
to: expect { }.to
|
2014-03-14 11:38:54 -03:00 |
|
Fabio Rehm
|
aef40d5b42
|
core: Fix tests to be rspec 3.0 compatible [GH-111]
|
2014-03-13 00:57:36 -03:00 |
|
Fabio Rehm
|
bf6e4b5c89
|
Respect Vagrantfile options to disable forwarded port
Closes GH-149
|
2013-11-06 21:01:21 -02:00 |
|
Fabio Rehm
|
c61ade8ef4
|
Nicely handle nil values for :host_ip when specifying forwarded ports
Fix GH-170
|
2013-11-06 20:25:46 -02:00 |
|
Fabio Rehm
|
0385a64d31
|
Replace ugly driver builder with a more intelligent approach
References #118
|
2013-07-29 12:08:24 -03:00 |
|
Fabio Rehm
|
98f1df47a1
|
Do not attach forwarded ports to host's 127.0.0.1 by default
This is enough for us to bump to 0.5.0 and to close #76
|
2013-07-28 01:31:50 -03:00 |
|
Fabio Rehm
|
e68e4f8f05
|
Support for specifying host interface/ip for binding redir
Closes #76
|
2013-07-21 22:45:07 -03:00 |
|
Fabio Rehm
|
ee37b9e2e7
|
Merge branch 'check-for-redir' of https://github.com/zeroem/vagrant-lxc
|
2013-07-21 21:06:14 -03:00 |
|
Darrell Hamilton
|
eb0854b6fb
|
Test coverage for 'check for redir'
Includes a minor refactor allowing variation of the result of the system
call per test
|
2013-07-15 21:56:40 -07:00 |
|
Darrell Hamilton
|
17211387d0
|
stub out call to system
|
2013-07-15 11:30:40 -07:00 |
|
Fabio Rehm
|
09208a0d28
|
mock/stub -> double
|
2013-07-13 13:41:39 -03:00 |
|
Fabio Rehm
|
c14ca57d17
|
fire_double was deprecated in favor of instance_double
|
2013-07-13 13:41:20 -03:00 |
|
Fabio Rehm
|
8c884a2e8c
|
fork + exec = spawn
|
2013-04-23 08:03:29 -03:00 |
|
Fabio Rehm
|
2e14c974d7
|
Redirect redir stderr to /dev/null
Closes #51
|
2013-04-10 02:22:19 -03:00 |
|
Fabio Rehm
|
514736bdd6
|
Rename old container references to driver
|
2013-04-05 22:10:48 -03:00 |
|
Fabio Rehm
|
082f7dc5d3
|
Rename Container to Driver
|
2013-04-05 22:10:48 -03:00 |
|
Fabio Rehm
|
dcfd7347c6
|
Move i18n require up to spec_helper
|
2013-03-26 22:14:32 -03:00 |
|
Fabio Rehm
|
dd99c56cda
|
First stab at port forwarding with redir
|
2013-03-26 22:14:31 -03:00 |
|