mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 12:24:29 +00:00
3d0d4be4a9
Signed-off-by: Pablo Santiago Blum de Aguiar <scorphus@gmail.com>
7 lines
152 B
Python
7 lines
152 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def generic_shell(monkeypatch):
|
|
monkeypatch.setattr('thefuck.shells.and_', lambda *x: ' && '.join(x))
|