Skip to content

Commit 9cd64dc

Browse files
author
Rodrigo Álvarez
committed
Add fixture for gleam support
1 parent e45a1f2 commit 9cd64dc

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.beam
2+
*.ez
3+
/build
4+
erl_crash.dump
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name = "gleam_dep"
2+
version = "1.0.0"
3+
4+
# Fill out these fields if you intend to generate HTML documentation or publish
5+
# your project to the Hex package manager.
6+
#
7+
# description = ""
8+
# licences = ["Apache-2.0"]
9+
# repository = { type = "github", user = "", repo = "" }
10+
# links = [{ title = "Website", href = "" }]
11+
#
12+
# For a full reference of all the available options, you can have a look at
13+
# https://gleam.run/writing-gleam/gleam-toml/.
14+
15+
[dependencies]
16+
gleam_stdlib = ">= 0.44.0 and < 2.0.0"
17+
gleam_otp = ">= 0.16.1 and < 1.0.0"
18+
19+
[dev-dependencies]
20+
gleeunit = ">= 1.0.0 and < 2.0.0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file was generated by Gleam
2+
# You typically do not need to edit this file
3+
4+
packages = [
5+
{ name = "gleam_erlang", version = "0.34.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "0C38F2A128BAA0CEF17C3000BD2097EB80634E239CE31A86400C4416A5D0FDCC" },
6+
{ name = "gleam_otp", version = "0.16.1", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "50DA1539FC8E8FA09924EB36A67A2BBB0AD6B27BCDED5A7EF627057CF69D035E" },
7+
{ name = "gleam_stdlib", version = "0.54.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "723BA61A2BAE8D67406E59DD88CEA1B3C3F266FC8D70F64BE9FEC81B4505B927" },
8+
{ name = "gleeunit", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "0E6C83834BA65EDCAAF4FE4FB94AC697D9262D83E6F58A750D63C9F6C8A9D9FF" },
9+
]
10+
11+
[requirements]
12+
gleam_otp = { version = ">= 0.16.1 and < 1.0.0" }
13+
gleam_stdlib = { version = ">= 0.44.0 and < 2.0.0" }
14+
gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pub fn main() {
2+
True
3+
}

lib/mix/test/test_helper.exs

+9
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,15 @@ Enum.each(fixtures, fn fixture ->
269269
File.cp_r!(source, dest)
270270
end)
271271

272+
## Set up Gleam fixtures
273+
274+
fixture = "gleam_dep"
275+
276+
source = MixTest.Case.fixture_path(fixture)
277+
dest = MixTest.Case.tmp_path(fixture)
278+
File.mkdir_p!(dest)
279+
File.cp_r!(source, dest)
280+
272281
## Set up Git fixtures
273282

274283
System.cmd("git", ~w[config --global user.email [email protected]])

0 commit comments

Comments
 (0)