Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix cd path when registering a new package (fix #43) #58

Merged
merged 8 commits into from
Aug 3, 2016
Merged
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ end"""
f = PkgDev.freeable(io)
@test any(f .== "Example") || contains(takebuf_string(io), "Example")
end

@testset "testing package registration" begin
PkgDev.generate("GreatNewPackage", "MIT")
PkgDev.register("GreatNewPackage")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this will need git credentials of some kind

@test isdir(joinpath(pkgdir, "METADATA", "GreatNewPackage"))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe test for presence and non empty files

end
end

@testset "Testing package utils" begin
Expand Down