1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-10-30 06:34:09 +00:00

Add functional marker

This commit is contained in:
nvbn
2015-09-06 01:13:44 +03:00
parent 8cc19daaaa
commit cdd5f21e88
10 changed files with 35 additions and 37 deletions

View File

@@ -1,5 +1,4 @@
import pytest
from tests.functional.utils import functional
from tests.functional.plots import with_confirmation, without_confirmation, \
refuse_with_confirmation, select_command_with_arrows
@@ -30,22 +29,22 @@ def proc(request, spawnu, run_without_docker):
return proc
@functional
@pytest.mark.functional
def test_with_confirmation(proc, TIMEOUT):
with_confirmation(proc, TIMEOUT)
@functional
@pytest.mark.functional
def test_select_command_with_arrows(proc, TIMEOUT):
select_command_with_arrows(proc, TIMEOUT)
@functional
@pytest.mark.functional
def test_refuse_with_confirmation(proc, TIMEOUT):
refuse_with_confirmation(proc, TIMEOUT)
@functional
@pytest.mark.functional
def test_without_confirmation(proc, TIMEOUT):
without_confirmation(proc, TIMEOUT)