# File lib/fog/openstack/requests/identity/get_tenant.rb, line 15
        def get_tenant(id)
          response = Excon::Response.new
          response.status = [200, 204][rand(1)]
          response.body = {
            'tenant' => {
              'id' => '1',
              'description' => 'Has access to everything',
              'enabled' => true,
              'name' => 'admin'
            }
          }
          response
        end