1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-21 20:38:54 +00:00

#486: Use Path instead of PosixPath

This commit is contained in:
Pablo Santiago Blum de Aguiar 2016-03-29 23:34:08 -03:00
parent 69db5c70e6
commit 047a1a6072

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import pytest import pytest
from pathlib import PosixPath from pathlib import Path
from thefuck import corrector, const from thefuck import corrector, const
from tests.utils import Rule, Command, CorrectedCommand from tests.utils import Rule, Command, CorrectedCommand
from thefuck.corrector import get_corrected_commands, organize_commands from thefuck.corrector import get_corrected_commands, organize_commands
@ -30,7 +30,7 @@ class TestGetRules(object):
(['git.py', 'bash.py'], ['git'], ['git'], [])]) (['git.py', 'bash.py'], ['git'], ['git'], [])])
def test_get_rules(self, glob, settings, paths, conf_rules, exclude_rules, def test_get_rules(self, glob, settings, paths, conf_rules, exclude_rules,
loaded_rules): loaded_rules):
glob([PosixPath(path) for path in paths]) glob([Path(path) for path in paths])
settings.update(rules=conf_rules, settings.update(rules=conf_rules,
priority={}, priority={},
exclude_rules=exclude_rules) exclude_rules=exclude_rules)