From 64a3278d3b89d78d021ce93b6e25cd1b28c32f23 Mon Sep 17 00:00:00 2001 From: Colin Caine Date: Fri, 10 Feb 2023 16:29:57 +0000 Subject: [PATCH] Add test for #225 --- test/runtests.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 5cfe346..396b6eb 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -9,6 +9,10 @@ println(GLFW.GetVersionString()) # GLFWError uses integer for unrecognized error code @test isa(GLFW.GLFWError(0xDEADBEEF, "").code, Integer) +# https://github.com/JuliaGL/GLFW.jl/pull/225 +@test GLFW.PRESS == true +@test GLFW.RELEASE == false + if !haskey(ENV, "CI") # AppVeyor and Travis CI don't support OpenGL include("windowclose.jl") end