App-Notifier-Service

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    "perl" => "5.014",
    "strict" => 0,
    "warnings" => 0
  },
  "script_files" => [
    "bin/app.pl",
    "bin/app.psgi"
  ],
  "test_requires" => {
    "File::Spec" => 0,
    "HTTP::Request::Common" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Plack::Test" => 0,
    "Test::More" => "0.88"
  }
);


my %fallback_build_requires = (
  "File::Spec" => 0,
  "HTTP::Request::Common" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Module::Build" => "0.28",
  "Plack::Test" => 0,
  "Test::More" => "0.88"
);


unless ( eval { Module::Build->VERSION(0.4004) } ) {
  delete $module_build_args{test_requires};

META.json  view on Meta::CPAN

            "YAML::XS" : "0",
            "lib" : "0",
            "perl" : "5.014",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "HTTP::Request::Common" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Plack::Test" : "0",
            "Test::More" : "0.88"
         }
      }
   },
   "provides" : {
      "App::Notifier::Service" : {
         "file" : "lib/App/Notifier/Service.pm",

META.yml  view on Meta::CPAN

---
abstract: 'an HTTP service for the notifier application for notifying that an event (such as the finish of a task) occured.'
author:
  - 'Shlomi Fish <shlomif@cpan.org>'
build_requires:
  File::Spec: '0'
  HTTP::Request::Common: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Module::Build: '0.28'
  Plack::Test: '0'
  Test::More: '0.88'
configure_requires:
  Module::Build: '0.28'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.023, CPAN::Meta::Converter version 2.150010'
keywords:

t/002_index_route.t  view on Meta::CPAN

use Test::More tests => 1;
use strict;
use warnings;

# the order is important
use Plack::Test;
use HTTP::Request::Common;    # install separate

# use App::Notifier::Service 0.0800;

my $app  = do { require App::Notifier::Service; };
my $test = Plack::Test->create($app);

my $res = $test->request( GET '/' );

{
    local $TODO = 1;



( run in 0.460 second using v1.01-cache-2.11-cpan-de7293f3b23 )