vagrant-lxc-ng/spec
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
..
fixtures Move away from using ifconfig to ip addr for scanning container IPs 2013-04-05 22:10:49 -03:00
support Move unit specs example group related code to spec/unit/support 2013-04-21 18:13:34 -03:00
unit Convert specs to RSpec 2.99.0.beta2 syntax with Transpec 2014-03-14 11:38:54 -03:00
spec_helper.rb Convert specs to RSpec 2.99.0.beta2 syntax with Transpec 2014-03-14 11:38:54 -03:00
unit_helper.rb Convert specs to RSpec 2.99.0.beta2 syntax with Transpec 2014-03-14 11:38:54 -03:00
Vagrantfile Couple of tweaks to acceptance specs 2013-11-06 01:11:38 -02:00