Rename pacmanconf module to pacman
This commit is contained in:
27
tests/test_pacman.py
Executable file
27
tests/test_pacman.py
Executable file
@ -0,0 +1,27 @@
|
||||
import packaging_scripts.pacmanconf as pacmanconf
|
||||
import re
|
||||
import unittest
|
||||
|
||||
from hypothesis import given
|
||||
from hypothesis.strategies import iterables, text
|
||||
from pathlib import Path
|
||||
from types import GeneratorType
|
||||
from unittest.mock import MagicMock, patch
|
||||
|
||||
|
||||
# ========== Constants ==========
|
||||
TESTING_MODULE = f"packaging_scripts.pacmanconf"
|
||||
|
||||
|
||||
# ========== Unit Tests ==========
|
||||
# class TestParseConfigFile(unittest.TestCase):
|
||||
# def setUp(self):
|
||||
# self.pat
|
||||
#
|
||||
# def tearDown(self):
|
||||
#
|
||||
#
|
||||
# class TestListConfiguredRepos(unittest.TestCase):
|
||||
# def setUp(self):
|
||||
#
|
||||
# def test_removes_one_element(self):
|
Reference in New Issue
Block a user