Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mock-data for pool requests #70

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading