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