Skip to content

Instantly share code, notes, and snippets.

@faxm0dem
Created November 30, 2015 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faxm0dem/223dc122700496a61bb5 to your computer and use it in GitHub Desktop.
Save faxm0dem/223dc122700496a61bb5 to your computer and use it in GitHub Desktop.
puppet rspec fact multiple resolutions
Facter.add(:java_foo) do
has_weight 100
setcode do
'bar'
end
end
Facter.add(:java_foo) do
has_weight 200
setcode do
nil
end
end
@faxm0dem
Copy link
Author

how to test this in rspec?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment