class Inspec::Resources::Podman

def parse_volumes

Returns the parsed command output.
Calls the run_command method to get all podman volume list and parse the command output.
def parse_volumes
  sub_cmd = "volume ls --format json"
  output = run_command(sub_cmd)
  parse(output)
end