1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/identity/user_tests.rb

17 lines
398 B
Ruby

Shindo.tests('Fog::Rackspace::Identity | user', ['rackspace']) do
pending if Fog.mocking?
service = Fog::Rackspace::Identity.new
options = {
:username => "fog_user_#{Time.now.to_i.to_s}",
:email => 'email@example.com',
:enabled => true
}
model_tests(service.users, options, false) do
tests('#save with existing user').succeeds do
@instance.save
end
end
end