-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test using ExplicitImports.jl (#96)
* add test using ExplicitImports.jl * Update test/test_aqua.jl Co-authored-by: Hendrik Ranocha <[email protected]> --------- Co-authored-by: Hendrik Ranocha <[email protected]>
- Loading branch information
1 parent
de4d7f4
commit fd1ea97
Showing
3 changed files
with
11 additions
and
7 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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
module TestAqua | ||
|
||
using Aqua | ||
using ExplicitImports: check_no_implicit_imports, check_no_stale_explicit_imports | ||
using Test | ||
using DispersiveShallowWater | ||
|
||
@testset "Aqua.jl" begin | ||
Aqua.test_all(DispersiveShallowWater, | ||
ambiguities = false) | ||
@test isnothing(check_no_implicit_imports(DispersiveShallowWater)) | ||
@test isnothing(check_no_stale_explicit_imports(DispersiveShallowWater)) | ||
end | ||
|
||
end #module |