예제 #1
0
파일: git_access.py 프로젝트: ntoll/yotta
 def test_installDeps(self):
     Args = namedtuple('Args', [
         'component', 'target', 'act_globally', 'install_linked',
         'install_test_deps'
     ])
     install.installComponent(
         Args(Test_Deps_Name, Test_Deps_Target, False, False, 'own'))
예제 #2
0
 def test_branchAccess(self):
     Args = namedtuple('Args', [
         'component', 'target', 'act_globally', 'install_linked',
         'install_test_deps', 'config'
     ])
     install.installComponent(
         Args(Test_Branch_Name, Test_Deps_Target, False, False, 'own', {}))
예제 #3
0
 def test_installDeps(self):
     Args = namedtuple('Args', ['component', 'target', 'act_globally', 'install_linked', 'install_test_deps'])
     install.installComponent(Args(Test_Deps_Name, Test_Deps_Target, False, False, 'own'))
예제 #4
0
 def test_branchAccess(self):
     Args = namedtuple('Args', ['component', 'target', 'act_globally', 'install_linked', 'install_test_deps', 'config'])
     install.installComponent(Args(Test_Branch_Name, Test_Deps_Target, False, False, 'own', {}))
예제 #5
0
파일: hg_access.py 프로젝트: noahp/yotta
 def test_installDeps(self):
     Args = namedtuple("Args", ["component", "target", "act_globally", "install_linked", "install_test_deps"])
     install.installComponent(Args(Test_Deps_Name, Test_Deps_Target, False, False, "own"))
예제 #6
0
 def test_branchAccess(self):
     Args = namedtuple('Args', ['component', 'target', 'act_globally', 'install_linked', 'save', 'save_target'])
     install.installComponent(Args(Test_Branch_Name, Test_Deps_Target, False, False, False, False))