mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extend("test")
extend("process")
extend("array")

describe("process:info usage", () => {
  it("should retrieve basic info as a keyed array", () => {
    process:info(info => {
      expect_equal(type(info), "keyed_array")
      has_key(info, "pid")
      has_key(info, "uid")
      has_key(info, "username")
      has_key(info, "binary_name")
      has_key(info, "event_loop_len")
    })
  })
})