From c5b48708f2f09aa0ba1f68252eeb1b2be54497e8 Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Tue, 29 Jul 2014 19:34:52 -0700 Subject: [PATCH] allow for [MakeMaker] dumping some config data of its own (rjbs/Dist-Zilla#276) --- t/03-dump-config.t | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/t/03-dump-config.t b/t/03-dump-config.t index a20717d..eb4692b 100644 --- a/t/03-dump-config.t +++ b/t/03-dump-config.t @@ -32,14 +32,15 @@ cmp_deeply( dynamic_config => 0, x_Dist_Zilla => superhashof({ plugins => supersetof( - { + superhashof({ class => 'Dist::Zilla::Plugin::MakeMaker::Awesome', - config => { + config => superhashof({ + # [MakeMaker] might also record some configs of its own 'Dist::Zilla::Role::TestRunner' => ignore, # changes over time - }, + }), name => 'MakeMaker::Awesome', version => ignore, - } + }) ), }) })),