OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 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 # |
| 5 # Test that a VPN 'kind' is required. |
| 6 # |
| 7 |
| 8 { "name":"VPNNoKindSpecified", |
| 9 "steps":[ |
| 10 [ "!vpn_server_config", { "config": { "unused":"not written" }}], |
| 11 [ "!vpn_server_config", { "kind":"gungla", |
| 12 "config": { "unused":"not written" }}], |
| 13 [ "!vpn_client_config" ], |
| 14 [ "!vpn_client_config", { "files": { "alpha":">bad-file" }}], |
| 15 |
| 16 ], |
| 17 } |
OLD | NEW |