File: test_device_sensitive.rb

package info (click to toggle)
ruby-puppet-resource-api 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,232 kB
  • sloc: ruby: 9,573; sh: 4; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Puppet::Transport
# a transport for a test_device
class TestDeviceSensitive
  def initialize(_context, connection_info);
    puts  "transport connection_info: #{connection_info}"
  end

  def facts(_context)
    { 'foo' => 'bar' }
  end

  def verify(_context)
    return true
  end

  def close(_context)
    return
  end
end

end