-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2aee99
commit 37ce2dd
Showing
3 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,15 @@ include("preamble.jl") | |
using PkgUnboundArgs | ||
|
||
@testset begin | ||
results = @testtestset begin | ||
Aqua.test_unbound_args(PkgUnboundArgs) | ||
end | ||
@test length(results) == 1 | ||
@test results[1] isa Test.Fail | ||
results = @testtestset begin | ||
Check warning on line 8 in test/test_unbound_args.jl GitHub Actions / format
|
||
Aqua.test_unbound_args(PkgUnboundArgs) | ||
end | ||
@test length(results) == 1 | ||
@test results[1] isa Test.Fail | ||
|
||
# It works with other tests: | ||
Aqua.test_ambiguities(PkgUnboundArgs) | ||
Aqua.test_undefined_exports(PkgUnboundArgs) | ||
# It works with other tests: | ||
Check warning on line 14 in test/test_unbound_args.jl GitHub Actions / format
|
||
Aqua.test_ambiguities( PkgUnboundArgs ) | ||
Aqua.test_undefined_exports(PkgUnboundArgs) | ||
end | ||
|
||
end # module |