NickelEval.jl

Julia FFI bindings for Nickel configuration language
Log | Files | Refs | README | LICENSE

runtests.jl (302B)


      1 using NickelEval
      2 using Test
      3 
      4 @testset "NickelEval.jl" begin
      5     if check_ffi_available()
      6         include("test_eval.jl")
      7         include("test_lazy.jl")
      8     else
      9         @warn "FFI library not available, skipping tests. Place libnickel_lang in deps/"
     10         @test_skip "FFI not available"
     11     end
     12 end