From d649147b0cb5e63f018fe73616b9acded3f504f4 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Fri, 24 Feb 2017 12:47:35 -0800 Subject: [PATCH] Minor test reorganization This removes two singleton directories. --- tests/lex/__init__.py | 0 tests/{test_files => resources}/icmd_test_file.hy | 0 tests/test_bin.py | 2 +- tests/{lex => }/test_lex.py | 0 4 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 tests/lex/__init__.py rename tests/{test_files => resources}/icmd_test_file.hy (100%) rename tests/{lex => }/test_lex.py (100%) diff --git a/tests/lex/__init__.py b/tests/lex/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_files/icmd_test_file.hy b/tests/resources/icmd_test_file.hy similarity index 100% rename from tests/test_files/icmd_test_file.hy rename to tests/resources/icmd_test_file.hy diff --git a/tests/test_bin.py b/tests/test_bin.py index d78892d..e66ef3f 100644 --- a/tests/test_bin.py +++ b/tests/test_bin.py @@ -80,7 +80,7 @@ def test_bin_hy_icmd(): def test_bin_hy_icmd_file(): - ret = run_cmd("hy -i test_files/icmd_test_file.hy", "(ideas)") + ret = run_cmd("hy -i resources/icmd_test_file.hy", "(ideas)") assert ret[0] == 0 output = ret[1] diff --git a/tests/lex/test_lex.py b/tests/test_lex.py similarity index 100% rename from tests/lex/test_lex.py rename to tests/test_lex.py