Skip to content

Commit b12d200

Browse files
authored
Merge pull request #41 from JuliaTesting/ox/move
move to new location
2 parents bcc7765 + 89ad6a0 commit b12d200

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# ExprTools
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/ExprTools.jl/stable)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://invenia.github.io/ExprTools.jl/dev)
5-
[![CI](https://github.com/Invenia/ExprTools.jl/workflows/CI/badge.svg)](https://github.com/Invenia/ExprTools.jl/actions?query=workflow%3ACI)
6-
[![Coverage](https://codecov.io/gh/invenia/ExprTools.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/invenia/ExprTools.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaTesting.github.io/ExprTools.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaTesting.github.io/ExprTools.jl/dev)
5+
[![CI](https://github.com/JuliaTesting/ExprTools.jl/workflows/CI/badge.svg)](https://github.com/JuliaTesting/ExprTools.jl/actions?query=workflow%3ACI)
6+
[![Coverage](https://codecov.io/gh/JuliaTesting/ExprTools.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaTesting/ExprTools.jl)
77

88
ExprTools provides tooling for working with Julia expressions during [metaprogramming](https://docs.julialang.org/en/v1/manual/metaprogramming/).
99
This package aims to provide light-weight performant tooling without requiring additional package dependencies.

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ using Documenter
44
makedocs(;
55
modules=[ExprTools],
66
authors="Curtis Vogt <[email protected]>",
7-
repo="https://github.com/invenia/ExprTools.jl/blob/{commit}{path}#L{line}",
7+
repo="https://github.com/JuliaTesting/ExprTools.jl/blob/{commit}{path}#L{line}",
88
sitename="ExprTools.jl",
99
format=Documenter.HTML(;
1010
prettyurls=get(ENV, "CI", "false") == "true",
11-
canonical="https://invenia.github.io/ExprTools.jl",
11+
canonical="https://JuliaTesting.github.io/ExprTools.jl",
1212
assets=String[],
1313
),
1414
pages=[
@@ -18,5 +18,5 @@ makedocs(;
1818
)
1919

2020
deploydocs(;
21-
repo="github.com/invenia/ExprTools.jl",
21+
repo="github.com/JuliaTesting/ExprTools.jl",
2222
)

src/method.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ function kwargs(m::Method)
243243
names = kwarg_names(m)
244244
isempty(names) && return nothing # we know it has no keywords.
245245
# TODO: Enhance this to support more than just their names
246-
# see https://github.com/invenia/ExprTools.jl/issues/6
246+
# see https://github.com/JuliaTesting/ExprTools.jl/issues/6
247247
return names
248248
end
249249

test/method.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function test_matches(candidate::AbstractDict, target::Dict)
2323
haskey(target, :kwargs) && @test target[:kwargs] == get(candidate, :kwargs, nothing)
2424

2525
# TODO: support return value declaration in signature
26-
# See https://github.com/invenia/ExprTools.jl/issues/5
26+
# See https://github.com/JuliaTesting/ExprTools.jl/issues/5
2727
haskey(target, :rtype) && @test_broken target[:rtype] == get(candidate, :rtype, nothing)
2828
return nothing
2929
end
@@ -213,7 +213,7 @@ struct TestCallableStruct end
213213
end
214214

215215
# Only test on 1.3 because of issues with declaring structs in 1.0-1.2
216-
# TODO: https://github.com/invenia/ExprTools.jl/issues/7
216+
# TODO: https://github.com/JuliaTesting/ExprTools.jl/issues/7
217217
VERSION >= v"1.3" && @eval @testset "Constructors (basic)" begin
218218
# demo type for testing on
219219
struct NoParamStruct
@@ -247,7 +247,7 @@ struct TestCallableStruct end
247247
end
248248

249249
# Only test on 1.3 because of issues with declaring structs in 1.0-1.2
250-
# TODO: https://github.com/invenia/ExprTools.jl/issues/7
250+
# TODO: https://github.com/JuliaTesting/ExprTools.jl/issues/7
251251
VERSION >= v"1.3" && @eval @testset "params (via Constructors with type params)" begin
252252
struct OneParamStruct{T}
253253
x::T

test/type_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
@test s.lb == Union{}
6464
@test s.ub == Any
6565

66-
# https://github.com/invenia/ExprTools.jl/issues/39
66+
# https://github.com/JuliaTesting/ExprTools.jl/issues/39
6767
@testset "#39" begin
6868
s = signature(Tuple{Type{T},T} where {T<:Number})
6969
@test only(s[:whereparams]).args[1] == :T

0 commit comments

Comments
 (0)