summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-07-21 02:46:11 +0300
committerGitHub <noreply@github.com>2018-07-21 02:46:11 +0300
commit306fa07f62bd6d2833af80a654411740a4626dd7 (patch)
treef65d93cc77536f34687e1b1a94d33c986db745b6 /test cases
parentf67630d26cf128cb1b659638918968a21955270e (diff)
parent0173b2457d9840ae63fff96aa30f387570e985cf (diff)
downloadmeson-306fa07f62bd6d2833af80a654411740a4626dd7.tar.gz
Merge pull request #3893 from FFY00/master
Add dlang module (dub support)
Diffstat (limited to 'test cases')
-rw-r--r--test cases/d/11 dub/meson.build23
-rw-r--r--test cases/d/11 dub/test.d14
2 files changed, 37 insertions, 0 deletions
diff --git a/test cases/d/11 dub/meson.build b/test cases/d/11 dub/meson.build
new file mode 100644
index 000000000..d852ca0c2
--- /dev/null
+++ b/test cases/d/11 dub/meson.build
@@ -0,0 +1,23 @@
+project('dub-example', 'd')
+
+dub_exe = find_program('dub', required : false)
+if not dub_exe.found()
+ error('MESON_SKIP_TEST: Dub not found')
+endif
+
+urld_dep = dependency('urld', method: 'dub')
+
+test_exe = executable('test-urld', 'test.d', dependencies: urld_dep)
+test('test urld', test_exe)
+
+# If you want meson to generate/update a dub.json file
+dlang = import('dlang')
+dlang.generate_dub_file(meson.project_name().to_lower(), meson.source_root(),
+ authors: 'Meson Team',
+ description: 'Test executable',
+ copyright: 'Copyright © 2018, Meson Team',
+ license: 'MIT',
+ sourceFiles: 'test.d',
+ targetType: 'executable',
+ dependencies: urld_dep
+) \ No newline at end of file
diff --git a/test cases/d/11 dub/test.d b/test cases/d/11 dub/test.d
new file mode 100644
index 000000000..7cf7a1d58
--- /dev/null
+++ b/test cases/d/11 dub/test.d
@@ -0,0 +1,14 @@
+import std.stdio;
+import url;
+
+void main() {
+ URL url;
+ with (url) {
+ scheme = "soap.beep";
+ host = "beep.example.net";
+ port = 1772;
+ path = "/serverinfo/info";
+ queryParams.add("token", "my-api-token");
+ }
+ writeln(url);
+} \ No newline at end of file