-
Notifications
You must be signed in to change notification settings - Fork 582
(MAINT) Remove testing logic for Puppet 4.5 #1193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This PR creates new new resources: * Stdlib::Http::Method for validating http methods * Stdlib::Http::Status This is just a copy of Stdlib::Httpstatus * make Stdlib::Httpstatus and alias to Stdlib::Http::Status Ideally we would deprecate Stdlib::Httpstatus in favour of Stdlib::Http::Status
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like it includes #1192 now. I'd prefer to keep that separate. Also looks like Rubocop is unhappy.
good catch that was over-site should be removed now |
@@ -1,28 +1,24 @@ | |||
require 'spec_helper' | |||
|
|||
if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0 | |||
describe 'Stdlib::IP::Address::V6::Nosubnet::Full' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this line should not have been removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added back
Support for puppet 4.5 was dropped from stdlib some time ago however the spec tests all include an if guard to prevent them running on puppet 4.5. As this is no longer required this PR cleans up theses guards
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll let others take a look as well.
Support for puppet 4.5 was dropped from stdlib some time ago however the
spec tests all include an if guard to prevent them running on puppet
4.5. As this is no longer required this PR cleans up theses guards