-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathcanonical_names_test.rb
More file actions
5179 lines (3887 loc) · 120 KB
/
Copy pathcanonical_names_test.rb
File metadata and controls
5179 lines (3887 loc) · 120 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
require 'test_helper'
module Credits
class CanonicalNamesTest < ActiveSupport::TestCase
include AssertContributorNames
test 'タコ焼き仮面' do
assert_contributor_names '84403ae', 'Takoyaki Kamen'
end
test '松田 明' do
assert_contributor_names 'bb33432', 'Akira Matsuda'
end
test '簡煒航' do
assert_contributor_names 'c32978d', 'Tony Jian'
end
test '簡煒航 (Jian Weihang)' do
assert_contributor_names '4459576', '簡煒航 (Jian Weihang)'
end
test '1334' do
assert_contributor_names '47d95c8', 'Iñigo Solano Pàez'
end
test '90yukke' do
assert_contributor_names 'b289519', 'Alexander Karmes'
end
test '_tiii' do
assert_contributor_names 'a4b02be', 'Titus Ramczykowski'
end
test 'Aaron' do
assert_contributor_names '1477a61', 'Aaron Eisenberger'
end
test 'aarongray' do
assert_contributor_names 'b30805b', 'Aaron Gray'
end
test 'abhay' do
assert_contributor_names '3353b85', 'Abhay Kumar'
end
test 'abonec' do
assert_contributor_names '20519ef', 'Alexander Baronec'
end
test 'acapilleri' do
assert_contributor_names 'c08c468', 'Angelo Capilleri'
end
test 'Accessd' do
assert_contributor_names 'db25ca7', 'Andrey Morskov'
end
test 'acechase' do
assert_contributor_names '331d9c0', 'Andrew Chase'
end
test 'Adam' do
assert_contributor_names '5dc1f09', 'Adam Magan'
end
test "adam\100the-kramers.net" do
assert_contributor_names '01cfd2b', 'Adam Kramer'
end
test 'Adam89' do
assert_contributor_names '52720b4', 'Adam Magan'
end
test 'adamj' do
assert_contributor_names '4d96ece', 'Adam Johnson'
end
test "adamm\100galacticasoftware.com" do
assert_contributor_names '10a86b2', 'Adam Majer'
end
test 'adamwiggins' do
assert_contributor_names 'ee6b607', 'Adam Wiggins'
end
test "adelle\100bullet.net.au" do
assert_contributor_names '101968f', 'Adelle Hartley'
end
test 'Aditya' do
assert_contributor_names 'd67adf1', 'Aditya Chadha'
end
test 'aditya-kapoor' do
assert_contributor_names '426f42c', 'Aditya Kapoor'
end
test 'adman65' do
assert_contributor_names '7dfa8c0', 'Adam Hawkins'
end
test 'Adrian' do
assert_contributor_names '475bb4b', 'Adrian Marin'
end
test 'adymo' do
assert_contributor_names '9d03813', 'Alexander Dymo'
end
test 'aeden' do
assert_contributor_names 'c9770d8', 'Anthony Eden'
end
test 'Agis-' do
assert_contributor_names '666a248', 'Agis Anastasopoulos'
end
test 'agius' do
assert_contributor_names '1ff67d8', 'Andrew Evans'
end
test 'aguynamedryan' do
assert_contributor_names '4eaa8ba', 'Ryan Duryea'
end
test 'aiwilliams' do
assert_contributor_names 'dd605e9', 'Adam Williams'
end
test 'akaspick' do
assert_contributor_names '0d82b14', 'Andrew Kaspick'
end
test "akaspick\100gmail.com" do
assert_contributor_names 'e30699f', 'Andrew Kaspick'
end
test 'akhilgkrishnan' do
assert_contributor_names 'bf79a4c', 'Akhil G Krishnan'
end
test 'Akshay' do
assert_contributor_names '4d62704', 'Akshay Mohite'
end
test 'Akshat Sharma' do
assert_contributor_names '2438a1c', 'Pramod Sharma'
end
test 'alancfrancis' do
assert_contributor_names '0b45b89', 'Alan Francis'
end
test "alancfrancis\100gmail.com" do
assert_contributor_names 'dfd0bdf', 'Alan Francis'
end
test 'Alan Tan' do
assert_contributor_names 'c9430db', 'Guo Xiang Tan'
end
test 'Alan Guo Xiang Tan' do
assert_contributor_names 'e6da3eb', 'Guo Xiang Tan'
end
test 'Alberto Almagro Sotelo' do
assert_contributor_names '5c62bd5', 'Gannon McGibbon', 'Alberto Almagro'
end
test 'Aleksandr Koss' do
assert_contributor_names 'b7bdacf', 'Sasha Koss'
end
test 'Aleksey Kondratenko' do
assert_contributor_names 'a9113b8', 'Aliaksey Kandratsenka'
end
test "alex.borovsky\100gmail.com" do
assert_contributor_names 'f1a01c8', 'Alexander Borovsky'
end
test "alex\100byzantine.no" do
assert_contributor_names 'ad63c96', 'Alexander Staubo'
end
test "alex\100msgpad.com" do
assert_contributor_names '4277568', 'Alex Pooley'
end
test "alex\100purefiction.net" do
assert_contributor_names 'd016d9a', 'Alexander Staubo'
end
test 'Alexander' do
assert_contributor_names 'bdcc271', 'Alexander Baronec'
assert_contributor_names '9e39dc4', 'Alexander Baronec'
assert_contributor_names '7c643d9', 'Alexander Quine'
assert_contributor_names 'ca6a12d', 'Dembskiy Alexander'
end
test 'alexbel' do
assert_contributor_names '6aaf4bf', 'Alexander Belaev'
end
test 'alexch' do
assert_contributor_names '2559feb', 'Alex Chaffee'
end
test 'Alexey' do
assert_contributor_names 'd336ca5', 'Alexey Zatsepin'
end
test 'alexey' do
assert_contributor_names '52fe604', 'Alexey Zatsepin'
end
test 'Alexey Markov' do
assert_contributor_names '0c85705', 'Markov Alexey'
end
test "alexkwolfe\100gmail.com" do
assert_contributor_names 'b5c2366', 'Alex Wolfe'
end
test 'alfa-jpn' do
assert_contributor_names '9bd4386', 'Atsushi Nakamura'
end
test 'alimi' do
assert_contributor_names '6b5df90', 'Ali Ibrahim'
end
test 'alkesh26' do
assert_contributor_names '393566c', 'Alkesh Ghorpade'
end
test 'alkeshghorpade' do
assert_contributor_names 'aed448c', 'Alkesh Ghorpade'
end
test "alles\100atomicobject.com" do
assert_contributor_names '68dfe3e', 'Micah Alles'
end
test 'alloy' do
assert_contributor_names '4d1c87a', 'Eloy Duran'
end
test 'ambethia' do
assert_contributor_names '18c663e', 'Jason L Perry'
end
test 'amishyn' do
assert_contributor_names 'e32149a', 'Alex Mishyn'
end
test 'amitkumarsuroliya' do
assert_contributor_names '44e94a3', 'Amit Kumar Suroliya'
end
test 'anamba' do
assert_contributor_names '6ccbef5', 'Aaron Namba'
end
test 'Anand' do
assert_contributor_names '25f60cc', 'Anand Muthukrishnan'
end
test 'Anatoly Makarevich' do
assert_contributor_names 'fce0d08', 'Anatoli Makarevich'
end
test 'andrea longhi' do
assert_contributor_names 'd7f0e43', 'Andrea Longhi'
end
test 'Andrew' do
assert_contributor_names '3d6ed50', 'Andrew Chase'
end
test "andrew.john.peters\100gmail.com" do
assert_contributor_names '03097d3', 'Andrew Peters'
end
test "andrew\100redlinesoftware.com" do
assert_contributor_names 'd3cf2a6', 'Andrew Kaspick'
end
test "andrew.novoselac\100shopify.com" do
assert_contributor_names '0b8e083', "Andrew Novoselac"
end
test "andrey.nering\100gmail.com" do
assert_contributor_names '6d59473', 'Andrey Nering'
end
test "andy\100tinnedfruit.org" do
assert_contributor_names 'ab7c7a8', 'Andrew A. Smith'
end
test "andylien\100gmail.com" do
assert_contributor_names '35240ba', 'Andy Lien'
end
test 'Angelo capilleri' do
assert_contributor_names 'b97e0a1', 'Angelo Capilleri'
end
test 'angelo giovanni capilleri' do
assert_contributor_names '64af96b', 'Angelo Capilleri'
end
test 'anilmaurya' do
assert_contributor_names '41722dd', 'Anil Kumar Maurya'
end
test 'Ankit Gupta-FIR' do
assert_contributor_names '6a71d09', 'Ankit Gupta'
end
test 'ankit1910' do
assert_contributor_names '3900671', 'Ankit Bansal'
end
test 'ankit8898' do
assert_contributor_names '46a0eac', 'Ankit Gupta'
end
test 'Ankit gupta' do
assert_contributor_names '72c5b5', 'Ankit Gupta'
end
test 'anna' do
assert_contributor_names '9326222', 'maiha'
end
test "anna\100wota.jp" do
assert_contributor_names 'e72ff35', 'maiha'
end
test 'AnnaErshova' do
assert_contributor_names '0166adc', 'Anna Ershova'
end
test 'anshkakashi' do
assert_contributor_names 'ab09984', 'Jason Ketterman'
end
test 'Anthony' do
assert_contributor_names '78f5874', 'Anthony Alberto'
end
test 'anthonynavarre' do
assert_contributor_names 'bdc5141', 'Anthony Navarre'
end
test 'Anton' do
assert_contributor_names 'f0ae503', 'Tõnis Simo'
end
test 'Antonio Tapiador' do
assert_contributor_names '5dd80db', 'Antonio Tapiador del Dujo'
end
test 'antramm' do
assert_contributor_names '083b0b7', 'Ant Ramm'
end
test 'anuj dutta' do
assert_contributor_names 'd572bf9', 'Anuj Dutta'
end
test 'aquajach' do
assert_contributor_names 'c0eb542', 'aquajach'
end
test 'ara.t.howard' do
assert_contributor_names '99c08c7', 'Ara T Howard'
end
test "arc\100uchicago.edu" do
assert_contributor_names '5177333', 'Shu-yu Guo'
end
test 'ariabov' do
assert_contributor_names '34a3d42', 'Alex Riabov'
end
test 'ariejan' do
assert_contributor_names '388e5d3', 'Ariejan de Vroom'
end
test 'arktisklada' do
assert_contributor_names 'd8bd9cf', 'Clayton Liggitt'
end
test 'Arsen7' do
assert_contributor_names 'f756bfb', 'Mariusz Pękala'
end
test 'artemave' do
assert_contributor_names '6c5a3bb', 'Artem Avetisyan'
end
test 'artemk' do
assert_contributor_names 'b386951', 'Artem Kramarenko'
end
test 'Arthur Nogueira Neves' do
assert_contributor_names '5772ffe', 'Arthur Neves'
end
test 'arthurgeek' do
assert_contributor_names '6ddde02', 'Arthur Zapparoli'
end
test 'arton' do
assert_contributor_names 'c11e78c', 'Akio Tajima'
end
test 'arvida' do
assert_contributor_names '2a7230a', 'Arvid Andersson'
end
test 'arvind' do
assert_contributor_names 'dad0c26', 'Arvind Mehra'
end
test 'Ashe Connor' do
assert_contributor_names '8f5f2bf', 'Asherah Connor'
end
test "ask\100develooper.com" do
assert_contributor_names '17ef706', 'Ask Bjørn Hansen'
end
test 'asmega' do
assert_contributor_names '61fa600', 'Phil Lee'
end
test 'Assaf' do
assert_contributor_names '87ef365', 'Assaf Arkin'
end
test "assaf.arkin\100gmail.com" do
assert_contributor_names '3142502', 'Assaf Arkin'
end
test 'athonlab' do
assert_contributor_names 'ce2eadb', 'AthonLab'
end
test "augustz\100augustz.com" do
assert_contributor_names '3d99d33', 'August Zajonc'
end
test 'AvnerCohen' do
assert_contributor_names 'd20a529', 'Avner Cohen'
end
test 'awilliams' do
assert_contributor_names 'b045b5c', 'Adam Williams'
end
test 'Ayose' do
assert_contributor_names '6ad8f6e', 'Ayose Cazorla'
end
test 'Azzurrio' do
assert_contributor_names '80e8259', 'Karim El-Husseiny'
end
test "babie7a0\100ybb.ne.jp" do
assert_contributor_names '9ded584', 'Michiaki Baba'
end
test 'backspace' do
assert_contributor_names '3b795c1', 'Ken Gerrard'
end
test 'bagwanpankaj' do
assert_contributor_names 'c424fb2', 'Bagwan Pankaj'
end
test 'Bart' do
assert_contributor_names 'c2f59f3', 'Bart de Water'
end
test 'Bas Van Klinkenberg' do
assert_contributor_names 'b99914c', 'Bas van Klinkenberg'
end
test 'Ben A. Morgan' do
assert_contributor_names 'bee4c8f', 'Ben A. Morgan'
end
test 'bastilian' do
assert_contributor_names '071f48b', 'Sebastian Graessl'
end
test 'beerlington' do
assert_contributor_names '3da275c', 'Pete Brown'
end
test "bellis\100deepthought.org" do
assert_contributor_names 'dc87eba', 'Brad Ellis'
end
test "ben\100bensinclair.com" do
assert_contributor_names '1d9905a', 'Ben Sinclair'
end
test "ben\100groovie.org" do
assert_contributor_names 'b9c79f1', 'Ben Bangert'
end
test 'benedikt' do
assert_contributor_names 'b17fd25', 'Benedikt Deicke'
end
test 'Benjamin Klotz' do
assert_contributor_names 'd5847f4', 'Benny Klotz'
end
test "benji\100silverinsanity.com" do
assert_contributor_names 'd08f838', 'Brian Gernhardt'
end
test 'benmmurphy' do
assert_contributor_names 'c8168a7', 'Ben Murphy'
end
test 'benolee' do
assert_contributor_names '008023c', 'Ben Holley'
end
test 'bermi' do
assert_contributor_names '6ca789b', 'Bermi Ferrer'
end
test 'BertG' do
assert_contributor_names '06afb8c', 'Bert Goethals'
end
test 'bgipsy' do
assert_contributor_names '88f2284', 'Serge Balyuk'
end
test 'bgreenlee' do
assert_contributor_names '083b0b7', 'Brad Greenlee'
end
test 'bitsweat' do
assert_contributor_names '253a2bb', 'Jeremy Daer'
end
test 'Blaine' do
assert_contributor_names 'f5977b2', 'Blaine Cook'
end
test 'blaine' do
assert_contributor_names '7d517a1', 'Blaine Cook'
end
test "blaine\100odeo.com" do
assert_contributor_names 'bf3f920', 'Blaine Cook'
end
test "blair\100orcaware.com" do
assert_contributor_names '46796e7', 'Blair Zajac'
end
test "blake\100near-time.com" do
assert_contributor_names '604eb8a', 'Blake Watters'
end
test 'BlueHotDog' do
assert_contributor_names '8642c2a', 'Danni Friedland'
end
test 'BMorearty' do
assert_contributor_names '436da68', 'Brian Morearty'
end
test "bob\100sporkmonger.com" do
assert_contributor_names 'ce458a7', 'Bob Aman'
end
test 'bobbus' do
assert_contributor_names '7ded3b8', 'Adrien Coquio'
end
test 'BobSilva' do
assert_contributor_names '0c94868', 'Bob Silva'
end
test 'Bodacious' do
assert_contributor_names '39b9c94', 'Gavin Morrice'
end
test 'bogdan' do
assert_contributor_names 'b644964', 'Bogdan Gusiev'
end
test 'Bogdan' do
assert_contributor_names '2686130', 'bogdanvlviv'
end
test 'boone' do
assert_contributor_names '3486d54', 'Mike Boone'
end
test 'Bounga' do
assert_contributor_names '39de84d', 'Nicolas Cavigneaux'
end
test "brad\100madriska.com" do
assert_contributor_names '785e1fa5', 'Brad Ediger'
end
test 'bradediger' do
assert_contributor_names '6c77370', 'Brad Ediger'
end
test 'bradrobertson' do
assert_contributor_names '0252376', 'Brad Robertson'
end
test 'brainopia' do
assert_contributor_names 'da82b0a', 'Ravil Bayramgalin'
end
test 'brandon' do
assert_contributor_names '35ffc1a', 'Brandon Keepers'
end
test "brandon\100opensoul.org" do
assert_contributor_names 'fe4d5ea', 'Brandon Keepers'
end
test "brandt\100kurowski.net" do
assert_contributor_names '6d7175d', 'Brandt Kurowski'
end
test 'brendan' do
assert_contributor_names '88f2284', 'Brendan Baldwin'
end
test "brianegge\100yahoo.com" do
assert_contributor_names 'a092749', 'Brian Egge'
end
test 'brianp' do
assert_contributor_names '50a7391', 'Brian Pearce'
end
test 'bronson' do
assert_contributor_names 'cb1f569', 'Scott Bronson'
end
test 'brupm' do
assert_contributor_names '4e7d332', 'Bruno Miranda'
end
test 'brynary' do
assert_contributor_names '5dc831f', 'Bryan Helmkamp'
end
test 'bscofield' do
assert_contributor_names '81991d6', 'Ben Scofield'
end
test 'buddhamagnet' do
assert_contributor_names 'a85729c', 'Dave Goodchild'
end
test 'c.r.mcgrath' do
assert_contributor_names '838ae35', 'Chris McGrath'
end
test 'chaadow' do
assert_contributor_names 'a5e1fc97d2', 'Chedli Bourguiba'
end
test "c.r.mcgrath\100gmail.com" do
assert_contributor_names '6a51940', 'Chris McGrath'
end
test 'caio' do
assert_contributor_names 'c089974', 'Caio Chassot'
end
test 'calavera' do
assert_contributor_names '4196616', 'David Calavera'
end
test 'Caleb' do
assert_contributor_names '5fa8793', 'Caleb Buxton', 'Tobias Lütke'
end
test "caleb\100aei-tech.com" do
assert_contributor_names 'd5b67ed8', 'Caleb Tennis'
end
test 'Caleb Thompson' do
assert_contributor_names '17136c20', 'Caleb Hearth'
assert_contributor_names '382a70c8', 'Caleb Hearth'
assert_contributor_names '75f3584d', 'Caleb Hearth'
assert_contributor_names 'd5867a01', 'Caleb Hearth'
assert_contributor_names '3d3fd39c', 'Caleb Hearth'
end
test 'canadaduane' do
assert_contributor_names 'cab2494', 'Duane Johnson'
end
test 'careo' do
assert_contributor_names '50ee332', 'Dane Jensen'
end
test 'Carlhuda' do
assert_contributor_names 'c102db9', 'Yehuda Katz', 'Carl Lerche'
end
test 'CassioMarques' do
assert_contributor_names '053afbe', 'Cássio Marques'
end
test 'Catfish' do
assert_contributor_names '9679cb4', 'Jonathan del Strother'
end
test 'catfish' do
assert_contributor_names 'eff27ab', 'Jonathan del Strother'
end
test 'cavalle' do
assert_contributor_names 'b96db52', 'Luismi Cavallé'
end
test 'cavelle' do
assert_contributor_names '9e45586', 'Luismi Cavallé'
end
test 'cch1' do
assert_contributor_names '569a78c', 'Chris Hapgood'
end
test 'cczona' do
assert_contributor_names '6ee8e92', 'Carina C. Zona'
end
test "cdcarter\100gmail.com" do
assert_contributor_names '2139921', 'Chris Carter'
end
test 'Cédric FABIANSKI' do
assert_contributor_names '9f54921', 'Cédric Fabianski'
end
test 'ceefour' do
assert_contributor_names '7e33de4', 'Hendy Irawan'
end
test 'ch33hau' do
assert_contributor_names 'ac85125', 'Lim Chee Hau'
end
test 'chaitanyav' do
assert_contributor_names '449cf50', 'Chaitanya Vellanki'
end
test "charles.gerungan\100gmail.com" do
assert_contributor_names '3c0e7b1', 'Charles M. Gerungan'
end
test 'chas' do
assert_contributor_names '6f63287', 'Chas Grundy'
end
test 'chocoby' do
assert_contributor_names '04907b6', 'Kenta Okamoto'
end
test 'choonkeat' do
assert_contributor_names '099c206', 'Choon Keat'
end
test "choonkeat\100gmail.com" do
assert_contributor_names '89840c4', 'Choon Keat'
end
test "chris\100chrisbrinker.com" do
assert_contributor_names 'a685579', 'Chris Brinker'
end
test 'chris finne' do
assert_contributor_names 'b80fa81', 'Chris Finne'
end
test "chris\100octopod.info" do
assert_contributor_names '3c0e7b1', 'Chris McGrath'
end
test "chris\100ozmm.org" do
assert_contributor_names '11c715a', 'Chris Wanstrath'
end
test "chris\100seagul.co.uk" do
assert_contributor_names '760bcc6', 'Chris Roos'
end
test 'chrisfinne' do
assert_contributor_names '76d2c45', 'Chris Finne'
end
test 'chrisk' do
assert_contributor_names '19a1586', 'Chris Kampmeier'
end
test 'chriskohlbrenner' do
assert_contributor_names '2ec51d0', 'Chris Kohlbrenner'
end
test 'chrismear' do
assert_contributor_names 'afd288c', 'Chris Mear'
end
test 'chrisroos' do
assert_contributor_names '50253ed', 'Chris Roos'
end
test "chriztian.steinmeier\100gmail.com" do
assert_contributor_names 'd40af24', 'Chriztian Steinmeier'
end
test 'Chu Yeow' do
assert_contributor_names 'dc3e55d', 'Cheah Chu Yeow'
end
test 'chuyeow' do
assert_contributor_names '56e6462', 'Cheah Chu Yeow'
end
test 'ciastek' do
assert_contributor_names '2bcfdec', 'Sebastian Spieszko'
end
test 'cjheath' do
assert_contributor_names '12d8d48', 'Clifford Heath'
end
test 'Claudio B' do
assert_contributor_names '0b0042c', 'Claudio Baccigalupo'
end
test 'Claudio B.' do
assert_contributor_names '2651810', 'Claudio Baccigalupo'
end
test 'claudiob' do
assert_contributor_names '0e56c1d', 'Claudio Baccigalupo'
end
test 'claudiofullscreen' do
assert_contributor_names '0b725aa', 'Claudio Baccigalupo'
end
test 'cluon' do
assert_contributor_names 'deda0ee', 'Phil Orwig'
end
test 'cnaize' do
assert_contributor_names 'bf15169', 'Nikita Loskutov'
end
test 'codafoo' do
assert_contributor_names 'be827f9', 'Cesar Ho'
end
test 'codahale' do
assert_contributor_names '4aabe46', 'Coda Hale'
end
test 'codeape' do
assert_contributor_names '9a42096', 'Dan Cheail'
end
test 'codebrulee' do
assert_contributor_names 'ebe8dd6', 'Kevin Smith'
end
test 'codesnik' do
assert_contributor_names '96d4da1', 'Alexey Trofimenko'
end
test "codyfauser\100gmail.com" do
assert_contributor_names 'f49ba11', 'Cody Fauser'
end
test 'coffee2code' do
assert_contributor_names 'ab9f324', 'Scott Reilly'
end
test "cohen.jeff\100gmail.com" do
assert_contributor_names 'e57bd72', 'Jeff Cohen'
end
test "colman\100rominato.com" do
assert_contributor_names 'b762e01', 'Colman Nady'
end
test "contact\100lukeredpath.co.uk" do
assert_contributor_names 'e9d4b36', 'Luke Redpath'
end
test "contact\100maik-schmidt.de" do
assert_contributor_names '2d24bed', 'Maik Schmidt'
end
test 'coreyhaines' do
assert_contributor_names 'df755d4', 'Corey Haines'
end
test 'Cory Gwin' do
assert_contributor_names '31021c7', 'Cory Gwin'
end
test 'court3nay' do
assert_contributor_names '891a962', 'Courtenay Gasking'
end
test 'Court3nay' do
assert_contributor_names 'ee87dbe', 'Courtenay Gasking'
end
test "court3nay\100gmail.com" do
assert_contributor_names 'df97ed5', 'Courtenay Gasking'
end
test 'courtenay' do
assert_contributor_names '14e7c7c', 'Courtenay Gasking'
end
test 'cpytel' do
assert_contributor_names 'f254616', 'Chad Pytel'
end
test 'Cristi BALAN' do
assert_contributor_names '6d566e8', 'Cristi Balan'
end
test 'ctm' do
assert_contributor_names 'c26cca3', 'Clifford T. Matthews'
end
test 'cyu' do
assert_contributor_names '2b68762', 'Calvin Yu'
end
test 'dacat' do
assert_contributor_names 'f854ecd', 'Felix Dominguez'
end
test 'dancroak' do
assert_contributor_names '569a78c', 'Dan Croak'
end
test 'danger' do
assert_contributor_names '1dd0034', 'Jack Danger Canty'
end
test 'Danger' do
assert_contributor_names '2c6e616', 'Jack Danger Canty'
end
test 'Daniel Burnette' do
assert_contributor_names 'b93ae0c', 'Daniel Burnette'
end
test "daniel\100nightrunner.com" do
assert_contributor_names 'ba309a3', 'Daniel Hobe'
end
test "daniel\100nouvelles-solutions.com" do
assert_contributor_names '1671609', 'Daniel Wanja'
end
test 'danielc192' do
assert_contributor_names '0fc481d', 'Daniel Cohen'
end
test 'danielmorrison' do
assert_contributor_names 'cb5b8a7', 'Daniel Morrison'
end
test "daniels\100pronto.com.au" do
assert_contributor_names '6a1a1e5', 'Daniel Sheppard'
end