diff --git a/modules/test/foo.js b/modules/test/foo.js
new file mode 100644
index 0000000..e69de29
diff --git a/modules/test/test.info.yml b/modules/test/test.info.yml
new file mode 100644
index 0000000..61a928f
--- /dev/null
+++ b/modules/test/test.info.yml
@@ -0,0 +1,3 @@
+name: Test
+description: Testing things
+core: 8.x
diff --git a/modules/test/test.module b/modules/test/test.module
new file mode 100644
index 0000000..ea54002
--- /dev/null
+++ b/modules/test/test.module
@@ -0,0 +1,18 @@
+<?php
+
+function test_library_info() {
+  $libraries['foo'] = array(
+    'title' => 'My Module: My Library',
+    'version' => '1.0',
+    'js' => array(
+      drupal_get_path('module', 'test') . '/foo.js',
+    ),
+  );
+
+  return $libraries;
+}
+
+function test_init() {
+  drupal_add_library('test', 'foo');
+}
+
