blob: 649cbc6bf245d4ba15cded71c2820589912cf9ee [file] [log] [blame]
"""Tests that the pytest plugin properly provides the "fs" fixture"""
import os
def test_fs_fixture(fs):
fs.CreateFile('/var/data/xx1.txt')
assert os.path.exists('/var/data/xx1.txt')