Skip to content

Commit

Permalink
Add mock-data for pool requests
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bucher committed Dec 22, 2023
1 parent 3741a85 commit 2e7637a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/fog/proxmox/compute/requests/next_vmid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ def next_vmid(options = {})

# class Mock next_vmid collection
class Mock
def next_vmid; end
def next_vmid(options = {})
101
end
end
end
end
Expand Down
7 changes: 6 additions & 1 deletion lib/fog/proxmox/identity/requests/get_pool.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ def get_pool(poolid)

# class Mock get_pool collection
class Mock
def get_pool(poolid); end
def get_pool(poolid)
{
'members' => [],
'comment' => 'This pool is just for testing'
}
end
end
end
end
Expand Down
9 changes: 8 additions & 1 deletion lib/fog/proxmox/identity/requests/list_pools.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ def list_pools

# class Mock list_pools request
class Mock
def list_pools; end
def list_pools
[
{
'poolid' => 'TestPool',
'comment' => 'This pool is just for testing'
}
]
end
end
end
end
Expand Down

0 comments on commit 2e7637a

Please sign in to comment.