Beispiel #1
0
  def setUp(self):
    super().setUp()

    self.new_name = 'goo'
    self.spec_path = 'a'
    self.set_options(**{ 'from': '{}:a'.format(self.spec_path),
                         'to': '{}:{}'.format(self.spec_path, self.new_name) })
    self.meta_rename = self.create_task(
      self.context(target_roots=list(prepare_dependencies(self).values())))
  def setUp(self):
    super(MetaRenameTest, self).setUp()

    self.new_name = 'goo'
    self.spec_path = 'a'
    self.set_options(**{ 'from': '{}:a'.format(self.spec_path),
                         'to': '{}:{}'.format(self.spec_path, self.new_name) })
    self.meta_rename = self.create_task(
      self.context(target_roots=prepare_dependencies(self).values()))
Beispiel #3
0
    def setUp(self):
        super().setUp()

        self.new_name = "goo"
        self.spec_path = "a"
        self.set_options(
            **{
                "from": "{}:a".format(self.spec_path),
                "to": "{}:{}".format(self.spec_path, self.new_name),
            })
        self.meta_rename = self.create_task(
            self.context(
                target_roots=list(prepare_dependencies(self).values())))
Beispiel #4
0
    def setUp(self):
        super(BuildozerTest, self).setUp()

        self.targets = prepare_dependencies(self)
    def setUp(self):
        super().setUp()

        self.targets = prepare_dependencies(self)
Beispiel #6
0
  def setUp(self):
    super(BuildozerTest, self).setUp()

    self.targets = prepare_dependencies(self)