Revision 2195260d8663bbc6b5df88ff0aaa377607c62feb authored by Amit Murthy on 21 December 2015, 10:58:59 UTC, committed by Amit Murthy on 22 December 2015, 06:09:14 UTC
1 parent adffe19
Raw File
loading.jl
# This file is a part of Julia. License is MIT: http://julialang.org/license

using Base.Test

@test @__LINE__ == 5

include("test_sourcepath.jl")
thefname = "the fname!//\\&\0\1*"
@test include_string("include_string_test() = @__FILE__", thefname)() == Base.source_path()
@test include_string("Base.source_path()", thefname) == Base.source_path()
@test basename(@__FILE__) == "loading.jl"
@test isabspath(@__FILE__)
back to top