예제 #1
0
 def test_empty(self):
     self.assertEqual(Flag.split_flag(''), (u'', True))
예제 #2
0
 def test_double_dash_equal(self):
     self.assertEqual(Flag.split_flag('--hello='), (u'hello', True))
예제 #3
0
 def test_full_flag(self):
     self.assertEqual(Flag.split_flag('--hello=world'), (u'hello', u'world'))
예제 #4
0
 def test_single_dash(self):
     self.assertEqual(Flag.split_flag('-'), (u'', True))
예제 #5
0
 def test_single_flag(self):
     self.assertEqual(Flag.split_flag('-x'), (u'x', True))
예제 #6
0
 def test_empty(self):
     self.assertEqual(Flag.split_flag(''), (u'', True))
예제 #7
0
 def test_full_flag(self):
     self.assertEqual(Flag.split_flag('--hello=world'),
                      (u'hello', u'world'))
예제 #8
0
 def test_double_dash_equal(self):
     self.assertEqual(Flag.split_flag('--hello='), (u'hello', True))
예제 #9
0
 def test_single_flag(self):
     self.assertEqual(Flag.split_flag('-x'), (u'x', True))
예제 #10
0
 def test_single_dash(self):
     self.assertEqual(Flag.split_flag('-'), (u'', True))