Skip to content

Instantly share code, notes, and snippets.

@1tylermitchell
Created October 8, 2015 22:10
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1tylermitchell/663b47f39f3bf590d994 to your computer and use it in GitHub Desktop.
Save 1tylermitchell/663b47f39f3bf590d994 to your computer and use it in GitHub Desktop.
serverspec test for total memory on system
require 'spec_helper'
describe "Node Memory Availability" do
describe host_inventory['memory']['total'].delete('kB').to_i do
it { should > 0 }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment