this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore

authored by

inoas and committed by
Louis Pilfold
222b133b c9f9a897

+12 -16
+5 -1
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 - ## v1.1.0 3 + ## v1.1.3 - 2024-06-10 4 + 5 + - Fixed docs repo link by republishing to hex.pm. 6 + 7 + ## v1.1.0 - 2024-03-30 4 8 5 9 - Added `Option` assertions: `should.be_some` and `should.be_none` 6 10
+4 -12
gleam.toml
··· 1 1 name = "gleeunit" 2 - version = "1.1.2" 2 + version = "1.1.3" 3 3 licences = ["Apache-2.0"] 4 4 description = "Gleam bindings to Erlang's EUnit test framework" 5 5 gleam = ">= 0.33.0" 6 6 repository = { type = "github", user = "lpil", repo = "gleeunit" } 7 - links = [ 8 - { title = "Sponsor", href = "https://github.com/sponsors/lpil" }, 9 - ] 7 + links = [{ title = "Sponsor", href = "https://github.com/sponsors/lpil" }] 10 8 11 9 [javascript.deno] 12 - allow_read = [ 13 - "gleam.toml", 14 - "test", 15 - "build", 16 - ] 10 + allow_read = ["gleam.toml", "test", "build"] 17 11 18 12 [dependencies] 19 - gleam_stdlib = "~> 0.32" 20 - 21 - [dev-dependencies] 13 + gleam_stdlib = ">= 0.32"
+2 -2
src/gleeunit.gleam
··· 15 15 fn do_main() -> Nil 16 16 17 17 @target(erlang) 18 + import gleam/dynamic.{type Dynamic} 19 + @target(erlang) 18 20 import gleam/list 19 21 @target(erlang) 20 22 import gleam/result 21 23 @target(erlang) 22 24 import gleam/string 23 - @target(erlang) 24 - import gleam/dynamic.{type Dynamic} 25 25 26 26 @target(erlang) 27 27 fn do_main() -> Nil {
+1 -1
src/gleeunit/should.gleam
··· 4 4 //// More information on running eunit can be found in [the rebar3 5 5 //// documentation](https://rebar3.org/docs/testing/eunit/). 6 6 7 - import gleam/string 8 7 import gleam/option.{type Option, None, Some} 8 + import gleam/string 9 9 10 10 @external(erlang, "gleeunit_ffi", "should_equal") 11 11 pub fn equal(a: t, b: t) -> Nil {