diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-05 03:01:24 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-06 11:04:09 -0400 |
commit | 234346312eb1c429bffba9f893986266e14dceca (patch) | |
tree | 353b2cdbcb9676ae458c928e5cdec030a7f20133 | |
parent | 5f5f2d89456585c4dba337c879a34f322dcae32d (diff) | |
download | rneovim-234346312eb1c429bffba9f893986266e14dceca.tar.gz rneovim-234346312eb1c429bffba9f893986266e14dceca.tar.bz2 rneovim-234346312eb1c429bffba9f893986266e14dceca.zip |
test: expand_spec: clean up fixtures
-rw-r--r-- | test/functional/legacy/expand_spec.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/functional/legacy/expand_spec.lua b/test/functional/legacy/expand_spec.lua index 04701e8ba6..3da1416885 100644 --- a/test/functional/legacy/expand_spec.lua +++ b/test/functional/legacy/expand_spec.lua @@ -12,6 +12,13 @@ local function expected_empty() end describe('expand file name', function() + after_each(function() + helpers.rmdir('Xdir1') + helpers.rmdir('Xdir2') + helpers.rmdir('Xdir3') + helpers.rmdir('Xdir4') + end) + before_each(function() clear() |