Index: recipe_modules/shutil/example.py |
diff --git a/recipe_modules/uuid/example.py b/recipe_modules/shutil/example.py |
similarity index 55% |
copy from recipe_modules/uuid/example.py |
copy to recipe_modules/shutil/example.py |
index 862cf20d53b59df82490286257f5a6234c9ea4ef..bf767fa5f186fec95e6a68c5d6b28b87a6e1a567 100644 |
--- a/recipe_modules/uuid/example.py |
+++ b/recipe_modules/shutil/example.py |
@@ -1,16 +1,13 @@ |
-# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Copyright 2016 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. |
DEPS = [ |
- 'step', |
- 'uuid', |
+ 'shutil', |
] |
- |
def RunSteps(api): |
- uuid = api.uuid.random() |
- api.step('echo', ['echo', str(uuid)]) |
+ api.shutil.rmtree('foo') |
def GenTests(api): |