예제 #1
0
파일: check.py 프로젝트: wudping/gtk-doc
 def test_get_variable_empty_file(self):
     with self.assertRaises(check.FileFormatError) as ctx:
         check.get_variable({}, [], 'foo')
     self.assertEqual(str(ctx.exception), 'foo')
예제 #2
0
파일: check.py 프로젝트: wudping/gtk-doc
 def test_get_variable_finds_in_file_with_whitespce(self):
     result = check.get_variable({}, ['foo = bar'], 'foo')
     self.assertEqual('bar', result)
예제 #3
0
파일: check.py 프로젝트: wudping/gtk-doc
 def test_get_variable_prefers_env(self):
     result = check.get_variable({'foo': 'bar'}, ['foo=baz'], 'foo')
     self.assertEqual('bar', result)
예제 #4
0
파일: check.py 프로젝트: GNOME/gtk-doc
 def test_get_variable_empty_file(self):
     with self.assertRaises(check.FileFormatError) as ctx:
         check.get_variable({}, [], 'foo')
     self.assertEqual(str(ctx.exception), 'foo')
예제 #5
0
파일: check.py 프로젝트: GNOME/gtk-doc
 def test_get_variable_finds_in_file_with_whitespce(self):
     result = check.get_variable({}, ['foo = bar'], 'foo')
     self.assertEqual('bar', result)
예제 #6
0
파일: check.py 프로젝트: GNOME/gtk-doc
 def test_get_variable_prefers_env(self):
     result = check.get_variable({'foo': 'bar'}, ['foo=baz'], 'foo')
     self.assertEqual('bar', result)