about summary refs log tree commit diff
path: root/IRCStates/Tests/Motd.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IRCStates/Tests/Motd.cs')
-rw-r--r--IRCStates/Tests/Motd.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/IRCStates/Tests/Motd.cs b/IRCStates/Tests/Motd.cs
deleted file mode 100644
index 2d75982..0000000
--- a/IRCStates/Tests/Motd.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System.Collections.Generic;
-using IRCTokens;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-
-namespace IRCStates.Tests
-{
-    [TestClass]
-    public class Motd
-    {
-        [TestMethod]
-        public void MessageOfTheDay()
-        {
-            var server = new Server("test");
-            server.Parse(new Line("001 nickname"));
-            server.Parse(new Line("375 * :start of motd"));
-            server.Parse(new Line("372 * :first line of motd"));
-            server.Parse(new Line("372 * :second line of motd"));
-
-            CollectionAssert.AreEqual(new List<string> {"start of motd", "first line of motd", "second line of motd"},
-                server.Motd);
-        }
-    }
-}