Initial commit
[nethack-naodash.git] / t / NetHack-NAOdash.t
CommitLineData
01ba3ddc
MG
1#!/usr/bin/perl
2use 5.014000;
3use strict;
4use warnings;
5
6use Test::More tests => 2;
7
8BEGIN { use_ok 'NetHack::NAOdash' }
9
10open my $fh, '<', 't/xlogfile';
11my @xlog = <$fh>;
12close $fh;
13
14is_deeply naodash_xlog (@xlog), {
15 numbers => {
16 ascensions => 15,
17 games => 85,
18 maxconducts => 4,
19 maxhp => 422,
20 maxpoints => 3429164,
21 minrealtime => 43395,
22 minturns => 36028,
23 totalrealtime => 1483024,
24 },
25
26 checks => [qw/achieve_amulet achieve_ascended achieve_astral achieve_bell achieve_book achieve_candelabrum achieve_endgame achieve_gehennom achieve_invocation achieve_luckstone achieve_medusa achieve_sokoban combo_arc_dwa_law combo_bar_orc_cha combo_cav_gno_neu combo_hea_gno_neu combo_kni_hum_law combo_mon_hum_neu combo_pri_hum_law combo_pri_hum_neu combo_ran_elf_cha combo_rog_orc_cha combo_sam_hum_law combo_tou_hum_neu combo_val_dwa_law combo_wiz_elf_cha conduct_artiwishless conduct_atheist conduct_genocideless conduct_polypileless conduct_polyselfless conduct_vegetarian conduct_weaponless uconduct_boneless uconduct_survivor/]
27}, 'naodash_xlog';
This page took 0.010297 seconds and 4 git commands to generate.