We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d57cb3e commit f5bbac6Copy full SHA for f5bbac6
lib/fog/proxmox/identity/requests/get_pool.rb
@@ -34,7 +34,12 @@ def get_pool(poolid)
34
35
# class Mock get_pool collection
36
class Mock
37
- def get_pool(poolid); end
+ def get_pool(poolid)
38
+ {
39
+ 'members' => [],
40
+ 'comment' => 'This pool is just for testing'
41
+ }
42
+ end
43
end
44
45
lib/fog/proxmox/identity/requests/list_pools.rb
@@ -34,7 +34,14 @@ def list_pools
# class Mock list_pools request
- def list_pools; end
+ def list_pools
+ [
+ 'poolid' => 'TestPool',
+ ]
46
47
0 commit comments