-
Notifications
You must be signed in to change notification settings - Fork 136
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
modulesync 2.5.0 and drop Puppet4 support #156
Conversation
af2abe1
to
c0f1547
Compare
c0f1547
to
1befa0c
Compare
The class specs also need to be migrated |
0e30c5a
to
81e6e84
Compare
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 to be a few things that need cleanup. Will add more as I dig deeper
68889df
to
8dbfab2
Compare
8dbfab2
to
3b8dbac
Compare
let :facts do | ||
facts | ||
end | ||
let(:params) { default_params.merge(additional_params) } |
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.
A pattern I've started to use instead is:
let(:params) do
{
# ...
}
end
Then when you need to override it below:
let(:params) { super().merge(install_method: 'package') }
Pull Request (PR) description
This Pull Request (PR) fixes the following issues