feat(file) delete file

This commit is contained in:
dongdonglin(林向东) 2018-10-15 17:08:06 +08:00
parent 840379f9f3
commit b8b3c95698
3 changed files with 0 additions and 28 deletions

View File

@ -1,9 +0,0 @@
class TestClass:
def test_one(self):
x = "this"
assert 'h' in x
def test_two(self):
x = "hello"
assert 'hello' in x

View File

@ -1,9 +0,0 @@
# content of test_sample.py
def func(x):
return x + 1
def test_answer():
assert func(4) == 5

View File

@ -1,10 +0,0 @@
import pytest
def f():
raise SystemExit(1)
def test_mytest():
with pytest.raises(SystemExit):
f()