aboutsummaryrefslogtreecommitdiff
path: root/catapult/telemetry/telemetry/internal/testing/dependency_test_dir/dog/dog/dog_object.py
blob: dfba650b9e847e7ede0c159e1a8b0771a2186ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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.

import os
import sys

sys.path.append(os.path.join(
  os.path.dirname(__file__), '..', '..', 'other_animals', 'cat'))

from cat import cat_object  # pylint: disable=import-error

class Dog(object):
  def CreateEnemy(self):
    return cat_object.Cat()