summaryrefslogtreecommitdiff
path: root/test/commands_test.exs
diff options
context:
space:
mode:
authorThéophile Choutri <theophile@choutri.eu>2018-01-18 11:02:25 +0100
committerGitHub <noreply@github.com>2018-01-18 11:02:25 +0100
commit4562ee549c7213567585f33e75b8598940b55b86 (patch)
tree848766537cfb21cfde5b200dcbf4c27ceae8337b /test/commands_test.exs
parentMerge pull request #74 from tchoutri/add-whois (diff)
Fix namespaces and improve internal consistency
Diffstat (limited to 'test/commands_test.exs')
-rw-r--r--test/commands_test.exs6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/commands_test.exs b/test/commands_test.exs
index e9bdaef..38c2e90 100644
--- a/test/commands_test.exs
+++ b/test/commands_test.exs
@@ -1,7 +1,7 @@
-defmodule ExIrc.CommandsTest do
+defmodule ExIRC.CommandsTest do
use ExUnit.Case, async: true
- use Irc.Commands
+ use ExIRC.Commands
test "Commands are formatted properly" do
expected = <<0o001, "TESTCMD", 0o001, ?\r, ?\n>>
@@ -45,4 +45,4 @@ defmodule ExIrc.CommandsTest do
expected = <<"INVITE testuser #testchan", ?\r, ?\n>>
assert expected == invite!("testuser", "#testchan") |> IO.iodata_to_binary
end
-end \ No newline at end of file
+end