about summary refs log tree commit diff
path: root/IRCStates/Tests/Motd.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-11-10 18:35:21 -0500
committerBen Harris <ben@tilde.team>2020-11-10 18:35:21 -0500
commit35bbd30c2506b3d0b18397ef1443fb18c0d893d6 (patch)
tree893862078b9045fbfb73296a0290d16f245b2c2c /IRCStates/Tests/Motd.cs
parentb8e2634193eef0b7a4db417144fe7f38a5140c3b (diff)
Move tests to a separate project
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);
-        }
-    }
-}