ADD test_korean.py

This commit is contained in:
CheonKiO 2020-12-05 15:35:49 +09:00
parent a811d79754
commit ca5807f40d

10
tests/test_korean.py Normal file
View file

@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
import pytest
import pysnooper
@pysnooper.snoop()
def func(x):
return x + 1
def test_korean(x):
assert func(x) != x+1, '성공!'
test_korean(0)