Skip to content

Commit

Permalink
More coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
NHDaly committed Dec 20, 2023
1 parent 00becab commit b24af17
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/FixedDecimal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,9 @@ end
@test typemax(FD{Int8, 2}) < typemax(FD{Int8,1})
@test typemax(FD{Int8, 2}) <= typemax(FD{Int8,1})

@test !(typemin(FD{Int8, 2}) <= typemin(FD{Int8,1}))
@test !(typemin(FD{Int8, 1}) >= typemin(FD{Int8,2}))

@testset "Integer and FD" begin
@test 1 <= FD{Int8, 2}(1) <= 1
@test 1 >= FD{Int8, 2}(1) >= 1
Expand Down

0 comments on commit b24af17

Please sign in to comment.