Skip to content
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

Fix fact import test cache by bypassing the cache #617

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/unit/host_discovered_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ class HostDiscoveredTest < ActiveSupport::TestCase
@facts["productname"] = "Dishwasher DW400"
host2 = discover_host_from_facts(@facts)
assert_equal 'mace41f13cc3658', host2.name
assert_equal 'Dishwasher DW400', host2.facts["productname"]
# Bypass fact cache by using it as a method
assert_equal 'Dishwasher DW400', host2.facts('productname')['productname']
assert_equal '10.35.27.2', host2.ip
assert_equal 1, Host::Discovered.where(:name => 'mace41f13cc3658').count
end
Expand Down