• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from autotest_lib.client.cros.enterprise import enterprise_policy_base
6
7class enterprise_FakeEnrollment(enterprise_policy_base.EnterprisePolicyTest):
8    """Test to fake enroll and fake login using a fake dmserver."""
9    version = 1
10
11    def run_once(self):
12        """Enroll and login."""
13        self.setup_case(enroll=True, auto_login=True)
14