Add code and tests
[text-homestuck.git] / t / Text-Homestuck.t
CommitLineData
6b060d8e
MG
1#!/usr/bin/perl -w
2use 5.014000;
4d0a1f46
MG
3use strict;
4use warnings;
5
6b060d8e 6use Test::More tests => 13;
4d0a1f46
MG
7BEGIN { use_ok('Text::Homestuck') };
8
6b060d8e
MG
9is aradia
10 'Did you set up the teams?',
11 'did y0u set up the teams',
12 'aradia';
13
14is tavros
15 'Are you ready to be trollllled?',
16 'aRE YOU READY TO BE TROLLLLLED,',
17 'tavros';
18
19is sollux
20 'kk dont flip your shit about this but Im setting you up to play a game with some people.',
21 'KK dont fliip your 2hiit about thii2 but iim 2ettiing you up two play a game wiith 2ome people.',
22 'sollux';
23
24is karkat
25 'Hi again, idiot.',
26 'HI AGAIN, IDIOT.',
27 'karkat';
28
29is nepeta
30 '*AC saunters from her dark cave a little bit sleepy from the recent kill*',
31 ':33 < *ac saunters from her dark cave a little bit sl33py from the recent kill*',
32 'nepeta';
33
34is kanaya
35 'Yes, that\'s right.',
36 'Yes Thats Right',
37 'kanaya';
38
39is vriska
40 'Marquise Spinneret Mindfang. :)',
41 'Marquise Spinneret Mindfang. ::::)',
42 'vriska';
43
44is vriska
45 'A big fucking bomb in the core of your battlefield.',
46 'A 8ig fucking 8om8 in the core of your 8attlefield.',
47 'vriska';
48
49is equius
50 'What are you expecting to accomplish with this?',
51 'D --> What are you e%pecting to accomplish with this',
52 'equius';
53
54TODO: {
55 local $TODO = 'Gamzee StUdLyCaPs not implemented';
56 is gamzee
57 'It\'s a miracle.',
58 'iT\'s A mIrAcLe.',
59 'gamzee';
60}
4d0a1f46 61
6b060d8e
MG
62is eridan
63 'your no good connivin fucking backstabbing girl crush that\'s who.',
64 'your no good connivvin fuckin backstabbin girl crush thats wwho',
65 'eridan';
4d0a1f46 66
6b060d8e
MG
67is feferi
68 'HELLO!',
69 ')(-ELLO!',
70 'feferi';
This page took 0.012934 seconds and 4 git commands to generate.