file-scripts/tests/test_editor.py

32 lines
716 B
Python
Raw Normal View History

2020-10-23 11:21:59 -07:00
"""
.. moduleauthor:: Eric Torres
Tests for the rbackup.config module.
"""
import unittest
from unittest.mock import patch
import file_scripts.editor as editor
# ========== Constants ==========
# ========== Tests ==========
"""Test the select_editor() function.
Test cases
-----------
* Returned object is an instance of str
* If override is not None, ensure that it is in the result
"""
2021-12-20 22:43:18 -08:00
2020-10-23 11:21:59 -07:00
class TestSelectEditor(unittest.TestCase):
def test_returns_path_object(self):
self.assertIsInstance(editor.select_editor(), str)
def test_override(self):
override = "doesnotexist"
with self.assertRaises(FileNotFoundError):
editor.select_editor(override)