| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Thom May <thom@chef.io>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use require_relative in all the specs vs. expanding on the current file
path.
- Add missing license headers
- Don't silently swallow ipaddr_extensions not being installed. Make it
a development dep instead
- Remove a rescue on ipaddress as we only do this in one place and it's
a required gem
- Make the Openstack plugin spec setup the same way as every other spec
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|
|
|
| |
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
|
| |
|
|
|
|
|
| |
there's still a few cops that are unaddressed by this change, so it
won't be clean after merging this.
|
|
|
|
|
|
| |
Opscode -> Chef Sofware Inc. and bring all copyrights to current. End
the needed to keep editing these on every commit. Lets just get it over
with.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This conversion is done by Transpec 2.3.7 with the following command:
transpec
* 1156 conversions
from: obj.should
to: expect(obj).to
* 928 conversions
from: == expected
to: eq(expected)
* 551 conversions
from: obj.stub(:message)
to: allow(obj).to receive(:message)
* 226 conversions
from: obj.should_receive(:message)
to: expect(obj).to receive(:message)
* 65 conversions
from: obj.should_not
to: expect(obj).not_to
* 19 conversions
from: obj.should_not_receive(:message)
to: expect(obj).not_to receive(:message)
* 11 conversions
from: lambda { }.should
to: expect { }.to
* 3 conversions
from: Klass.any_instance.should_receive(:message)
to: expect_any_instance_of(Klass).to receive(:message)
* 3 conversions
from: lambda { }.should_not
to: expect { }.not_to
* 3 conversions
from: obj.stub_chain(:message1, :message2)
to: allow(obj).to receive_message_chain(:message1, :message2)
For more details: https://github.com/yujinakayama/transpec#supported-conversions
|
| |
|
|
|