diff options
-rw-r--r-- | CHANGELOG | 9 | ||||
-rwxr-xr-x | tests/tc_facterbin.rb | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -1,7 +1,14 @@ +1.3.4: + Added many new facts, including LSB facts. + + Fixed a few small bugs, notably the error you could get when asking + for a non-existent fact. + 1.3.3: Added thread exclusivity to memory and processor facts. - Added the ability to retrieve facts by pulling them out of the shell environment. + Added the ability to retrieve facts by pulling them out of the shell + environment. 1.3.2: Temporarily disabled memory and processor facts since they might cause hangs. diff --git a/tests/tc_facterbin.rb b/tests/tc_facterbin.rb index 9d9ca15..85f8df1 100755 --- a/tests/tc_facterbin.rb +++ b/tests/tc_facterbin.rb @@ -75,6 +75,8 @@ class TestFacterBin < Test::Unit::TestCase assert_instance_of(Hash, result) result.each do |name, value| + # These change too frequently. + next if name.to_s.downcase =~ /mem/ assert_equal(value, Facter.value(name)) end end |