def test_command_has_doubledash_present_3():
    set_sysargv(test_command_13)
    c = Command()
    assert c.has_double_dash() == True
def test_command_has_doubledash_false():
    set_sysargv(test_command_1)
    c = Command()
    assert c.has_double_dash() == False