From e992bb2175c118fcfcb43c767c807955c3e39208 Mon Sep 17 00:00:00 2001 From: Christian Walde Date: Tue, 10 Jul 2012 17:14:15 +0200 Subject: [PATCH 1/3] move pod tests to xt to reduce unncessary failures and load --- MANIFEST | 4 ++-- {t => xt}/pod.t | 0 {t => xt}/pod_coverage.t | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {t => xt}/pod.t (100%) rename {t => xt}/pod_coverage.t (100%) diff --git a/MANIFEST b/MANIFEST index de65060..7bc1c1c 100644 --- a/MANIFEST +++ b/MANIFEST @@ -8,8 +8,8 @@ MANIFEST This list of files MANIFEST.SKIP META.yml README -t/pod.t -t/pod_coverage.t xt/consume_buffering.t +xt/pod.t +xt/pod_coverage.t Makefile.PL META.json diff --git a/t/pod.t b/xt/pod.t similarity index 100% rename from t/pod.t rename to xt/pod.t diff --git a/t/pod_coverage.t b/xt/pod_coverage.t similarity index 100% rename from t/pod_coverage.t rename to xt/pod_coverage.t From 45a94af5bfd7684b2897a7ac81e7979510ac4fa1 Mon Sep 17 00:00:00 2001 From: Christian Walde Date: Tue, 10 Jul 2012 17:14:53 +0200 Subject: [PATCH 2/3] added a basic load test to guarantee minimum functionality --- MANIFEST | 1 + t/basic.t | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 t/basic.t diff --git a/MANIFEST b/MANIFEST index 7bc1c1c..1411ec6 100644 --- a/MANIFEST +++ b/MANIFEST @@ -8,6 +8,7 @@ MANIFEST This list of files MANIFEST.SKIP META.yml README +t/basic.t xt/consume_buffering.t xt/pod.t xt/pod_coverage.t diff --git a/t/basic.t b/t/basic.t new file mode 100644 index 0000000..22eebea --- /dev/null +++ b/t/basic.t @@ -0,0 +1,8 @@ +use strict; +use warnings; + +use Test::More; +use Net::Stomp; + +pass "Net::Stomp loads"; +done_testing; From 9f49a97e475fe07d491b66c56a615f471a52ae90 Mon Sep 17 00:00:00 2001 From: Christian Walde Date: Tue, 10 Jul 2012 17:17:04 +0200 Subject: [PATCH 3/3] added a link to the repo to the metadata --- Build.PL | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Build.PL b/Build.PL index 5b1f542..ec5bfa3 100644 --- a/Build.PL +++ b/Build.PL @@ -12,5 +12,10 @@ my $build = Module::Build->new( 'IO::Select' => '0', 'Class::Accessor::Fast' => '0', }, + meta_merge => { + resources => { + repository => 'https://github.com/jasontang/net-stomp' + } + }, ); $build->create_build_script;