From 255f316b5bad5a1aac41efaef937a441e54d7feb Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Fri, 3 Jan 2020 07:11:57 -0600 Subject: [PATCH] Move test modules into subdirectory --- test/snoopi.jl | 2 +- test/{ => testmodules}/A.jl | 0 test/{ => testmodules}/E.jl | 0 test/{ => testmodules}/FuncKinds.jl | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename test/{ => testmodules}/A.jl (100%) rename test/{ => testmodules}/E.jl (100%) rename test/{ => testmodules}/FuncKinds.jl (100%) diff --git a/test/snoopi.jl b/test/snoopi.jl index 2b0bde014..3ae3b3185 100644 --- a/test/snoopi.jl +++ b/test/snoopi.jl @@ -1,7 +1,7 @@ using SnoopCompile using Test -push!(LOAD_PATH, @__DIR__) +push!(LOAD_PATH, joinpath(@__DIR__, "testmodules")) using A using E using FuncKinds diff --git a/test/A.jl b/test/testmodules/A.jl similarity index 100% rename from test/A.jl rename to test/testmodules/A.jl diff --git a/test/E.jl b/test/testmodules/E.jl similarity index 100% rename from test/E.jl rename to test/testmodules/E.jl diff --git a/test/FuncKinds.jl b/test/testmodules/FuncKinds.jl similarity index 100% rename from test/FuncKinds.jl rename to test/testmodules/FuncKinds.jl