mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
776 B
Ruby
30 lines
776 B
Ruby
Shindo.tests('Brightbox::Compute | interface requests', ['brightbox']) do
|
|
|
|
tests('success') do
|
|
|
|
unless Fog.mocking?
|
|
server = Brightbox[:compute].servers.first
|
|
@interface_id = server.interfaces.first["id"]
|
|
end
|
|
|
|
tests("#get_interface('#{@interface_id}')").formats(Brightbox::Compute::Formats::Full::INTERFACE) do
|
|
pending if Fog.mocking?
|
|
Brightbox[:compute].get_interface(@interface_id)
|
|
end
|
|
|
|
end
|
|
|
|
tests('failure') do
|
|
|
|
tests("#get_interface('int-00000')").raises(Excon::Errors::Forbidden) do
|
|
pending if Fog.mocking?
|
|
Brightbox[:compute].get_interface('int-00000')
|
|
end
|
|
|
|
tests("#get_interface()").raises(ArgumentError) do
|
|
pending if Fog.mocking?
|
|
Brightbox[:compute].get_interface()
|
|
end
|
|
end
|
|
|
|
end
|