예제 #1
0
파일: test_editor.py 프로젝트: lbolla/fbcli
    def test_body_with_comments(self):
        txt = '''Title: title title
Project: Proj
Area: misc
Assign to: me
Priority: high
---
# This comment should stay
This is the body.
# This comment should stay, too

# This comment won't be included because there are no blank lines
# Lines starting wth "#" will be ignored.
# Leave this file empty to abort action.
# It's possible to add metadata in the format of a header.
# Use "---" as separator between the header and the body.
# E.g. To upload files use:
#    Files:
#      - path_to_file_1
#      - path_to_file_2
'''
        expected = '''# This comment should stay
This is the body.
# This comment should stay, too'''
        t = editor.Text(txt)
        self.assertEqual(t.body, expected)
예제 #2
0
파일: test_editor.py 프로젝트: lbolla/fbcli
    def test_new_empty_title(self):
        txt = '''Title:
Project: Proj
Area: misc
Assign to: me
Priority: for consideration
---
This is the body'''
        t = editor.Text(txt)
        with self.assertRaises(AssertionError):
            t.get_params_for_new()
예제 #3
0
파일: test_editor.py 프로젝트: lbolla/fbcli
    def test_invalid_yaml(self):
        txt = '''Title:Invalid because no space after column
Project:Proj
Area:misc
Assign to: me
Priority: for consideration
---
This is the body'''
        t = editor.Text(txt)
        with self.assertRaises(yaml.error.YAMLError):
            t.meta  # pylint: disable=pointless-statement
예제 #4
0
파일: test_editor.py 프로젝트: lbolla/fbcli
    def test_utf8_body(self):
        txt = '''Title: Some ¢hars
Project: Proj
Area: misc
Assign to: me
Priority: high
---
This is the body with mo®e utf8.
'''
        t = editor.Text(txt)
        self.assertEqual(t.meta['Title'], 'Some ¢hars')
        self.assertEqual(t.body, 'This is the body with mo®e utf8.')
예제 #5
0
파일: test_editor.py 프로젝트: lbolla/fbcli
    def test_meta_and_body(self):
        txt = '''Title: Valid title
Project: Proj
Area: misc
Assign to: me
Priority: high
---
This is the body'''
        t = editor.Text(txt)
        self.assertEqual(t.meta['Title'], 'Valid title')
        self.assertEqual(t.meta['Project'], 'Proj')
        self.assertEqual(t.meta['Area'], 'misc')
        self.assertEqual(t.meta['Assign to'], 'me')
        self.assertEqual(t.meta['Priority'], 'high')