示例#1
0
 def test_shell_options(self):
     vexrc = Vexrc()
     vexrc[vexrc.default_heading]['shell'] = '/bin/dish'
     options = Object(rest=['given', 'command'])
     environ = {'SHELL': 'wrong'}
     assert main.get_command(options, vexrc,
                             environ) == ['given', 'command']
示例#2
0
文件: test_main.py 项目: cwacek/vex
 def test_shell_vexrc(self):
     vexrc = Vexrc()
     vexrc[vexrc.default_heading]['shell'] = '/bin/dish'
     options = Object(rest=None)
     environ = {'SHELL': 'wrong'}
     assert main.get_command(options, vexrc, environ) == ['/bin/dish']
示例#3
0
文件: test_main.py 项目: cwacek/vex
 def test_flag(self):
     vexrc = Vexrc()
     options = argparse.Namespace(rest=['--foo'])
     environ = {}
     with raises(exceptions.InvalidCommand):
         main.get_command(options, vexrc, environ)
示例#4
0
文件: test_main.py 项目: cwacek/vex
 def test_nothing(self):
     vexrc = Vexrc()
     options = argparse.Namespace(rest=None)
     environ = {}
     with raises(exceptions.InvalidCommand):
         main.get_command(options, vexrc, environ)
示例#5
0
文件: test_main.py 项目: cwacek/vex
 def test_shell_environ(self):
     vexrc = Vexrc()
     options = Object(rest=None)
     environ = {'SHELL': '/bin/dish'}
     assert main.get_command(options, vexrc, environ) == ['/bin/dish']
示例#6
0
 def test_flag(self):
     vexrc = Vexrc()
     options = argparse.Namespace(rest=['--foo'])
     environ = {}
     with raises(exceptions.InvalidCommand):
         main.get_command(options, vexrc, environ)
示例#7
0
 def test_nothing(self):
     vexrc = Vexrc()
     options = argparse.Namespace(rest=None)
     environ = {}
     with raises(exceptions.InvalidCommand):
         main.get_command(options, vexrc, environ)
示例#8
0
 def test_shell_environ(self):
     vexrc = Vexrc()
     options = Object(rest=None)
     environ = {'SHELL': '/bin/dish'}
     assert main.get_command(options, vexrc, environ) == ['/bin/dish']
示例#9
0
 def test_shell_vexrc(self):
     vexrc = Vexrc()
     vexrc[vexrc.default_heading]["shell"] = "/bin/dish"
     options = Object(rest=None)
     environ = {"SHELL": "wrong"}
     assert main.get_command(options, vexrc, environ) == ["/bin/dish"]
示例#10
0
 def test_shell_environ(self):
     vexrc = Vexrc()
     options = Object(rest=None)
     environ = {"SHELL": "/bin/dish"}
     assert main.get_command(options, vexrc, environ) == ["/bin/dish"]