| Index: chrome/test/functional/chromeos_basic.py
|
| diff --git a/chrome/test/functional/chromeos_basic.py b/chrome/test/functional/chromeos_basic.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..857019b7d5b91352fe6091a75d60c34ce0d97a95
|
| --- /dev/null
|
| +++ b/chrome/test/functional/chromeos_basic.py
|
| @@ -0,0 +1,23 @@
|
| +#!/usr/bin/python
|
| +# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import pyauto_functional
|
| +import pyauto
|
| +
|
| +
|
| +class ChromeosBasic(pyauto.PyUITest):
|
| + """Basic tests for ChromeOS.
|
| +
|
| + Requires ChromeOS to be logged in.
|
| + """
|
| +
|
| + def testAppendTabs(self):
|
| + """Basic test for primary chrome on ChromeOS (named testing interface)."""
|
| + self.AppendTab(pyauto.GURL('about:version'))
|
| + self.assertEqual(self.GetTabCount(), 2, msg='Expected 2 tabs')
|
| +
|
| +
|
| +if __name__ == '__main__':
|
| + pyauto_functional.Main()
|
|
|