| Index: remoting/webapp/unittests/local_host_section_unittest.js
|
| diff --git a/remoting/webapp/unittests/local_host_section_unittest.js b/remoting/webapp/unittests/local_host_section_unittest.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..028b1b247650052d0d9b9df7e75ac266f4ded6d7
|
| --- /dev/null
|
| +++ b/remoting/webapp/unittests/local_host_section_unittest.js
|
| @@ -0,0 +1,31 @@
|
| +// Copyright 2015 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.
|
| +
|
| +(function() {
|
| +
|
| +'use strict';
|
| +
|
| +module('LocalHostEntry');
|
| +
|
| +test('setModel() handles local host that is registered under another account',
|
| + function() {
|
| + pass();
|
| +});
|
| +
|
| +test('setModel() handles local host that is missing.',
|
| + function() {
|
| + pass();
|
| +});
|
| +
|
| +test('setModel() handles local host that is started.',
|
| + function() {
|
| + pass();
|
| +});
|
| +
|
| +test('setModel() handles local host that is stopped.',
|
| + function() {
|
| + pass();
|
| +});
|
| +
|
| +})();
|
|
|