Skip to content

Commit 7053e0b

Browse files
committed
clean
1 parent 6fed110 commit 7053e0b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[![codecov](https://codecov.io/gh/JuliaGraphics/FreeTypeAbstraction.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaGraphics/FreeTypeAbstraction.jl)
2+
23
[![Build Status](https://travis-ci.org/JuliaGraphics/FreeTypeAbstraction.jl.svg?branch=master)](https://travis-ci.org/JuliaGraphics/FreeTypeAbstraction.jl)
4+
35
# FreeTypeAbstraction
46

57
Draw text into a Matrix.

test/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ a = renderstring!(
3939
50,
4040
valign = :vtop,
4141
)
42+
4243
@test all(a[1:10, :] .== 0)
4344
@test any(a[11:20, :] .!= 0)
4445
a = renderstring!(
@@ -50,6 +51,7 @@ a = renderstring!(
5051
50,
5152
valign = :vcenter,
5253
)
54+
5355
@test all(a[vcat(1:5, 16:end), :] .== 0)
5456
@test any(a[6:15, :] .!= 0)
5557
a = renderstring!(
@@ -72,7 +74,8 @@ a = renderstring!(
7274
50,
7375
valign = :vbottom,
7476
)
75-
@test any(a[1:10, :] .!= 0)
77+
78+
@test any(a[1
7679
@test all(a[11:20, :] .== 0)
7780
a = renderstring!(
7881
zeros(UInt8, 20, 100),

0 commit comments

Comments
 (0)