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; diff --git a/MANIFEST b/MANIFEST index de65060..1411ec6 100644 --- a/MANIFEST +++ b/MANIFEST @@ -8,8 +8,9 @@ MANIFEST This list of files MANIFEST.SKIP META.yml README -t/pod.t -t/pod_coverage.t +t/basic.t xt/consume_buffering.t +xt/pod.t +xt/pod_coverage.t Makefile.PL META.json 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; 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