# File lib/fog/identity/openstack/v2/requests/create_tenant.rb, line 17
          def create_tenant(attributes)
            response = Excon::Response.new
            response.status = [200, 204][rand(2)]
            response.body = {
              'tenant' => {
                'id'          => "df9a815161eba9b76cc748fd5c5af73e",
                'description' => attributes[:description] || 'normal tenant',
                'enabled'     => true,
                'name'        => attributes[:name] || 'default'
              }
            }
            response
          end