From 2d0be9bd77c47f5d9cb2a179ae706c9f74d201ec Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Mon, 6 Nov 2023 06:02:00 +0530 Subject: Initial Commit * Daemon Implementation - In-Progress * Initial MPC Event Captures * POST music title on daemon is loaded * POST music title on song change - TODO --- spec/spec_helper.cr | 2 ++ spec/wialt_daemon_spec.cr | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 spec/spec_helper.cr create mode 100644 spec/wialt_daemon_spec.cr (limited to 'spec') diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr new file mode 100644 index 0000000..164f802 --- /dev/null +++ b/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/wialt_daemon" diff --git a/spec/wialt_daemon_spec.cr b/spec/wialt_daemon_spec.cr new file mode 100644 index 0000000..41d2a80 --- /dev/null +++ b/spec/wialt_daemon_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe WialtDaemon do + # TODO: Write tests + + it "works" do + false.should eq(true) + end +end -- cgit v1.2.3