Skip to content

Commit

Permalink
Merge 74db87f into 436adf1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Jan 28, 2021
2 parents 436adf1 + 74db87f commit 2edde90
Show file tree
Hide file tree
Showing 50 changed files with 37 additions and 122 deletions.
2 changes: 0 additions & 2 deletions eg/ticket/App/Action/TicketComment.pm
@@ -1,7 +1,5 @@
package App::Action::TicketComment;

# $Id$

use strict;
use base qw( Workflow::Action );
use Log::Log4perl qw( get_logger );
Expand Down
2 changes: 0 additions & 2 deletions eg/ticket/App/Action/TicketCreate.pm
@@ -1,7 +1,5 @@
package App::Action::TicketCreate;

# $Id$

use strict;
use base qw( Workflow::Action );
use App::Ticket;
Expand Down
2 changes: 1 addition & 1 deletion eg/ticket/App/Action/TicketUpdate.pm
@@ -1,6 +1,6 @@
package App::Action::TicketUpdate;

# $Id$


use strict;
use base qw( Workflow::Action );
Expand Down
2 changes: 1 addition & 1 deletion eg/ticket/App/Condition/HasUserAndTicket.pm
@@ -1,6 +1,6 @@
package App::Condition::HasUserAndTicket;

# $Id$


use strict;
use base qw( Workflow::Condition );
Expand Down
2 changes: 1 addition & 1 deletion eg/ticket/App/Condition/IsCreator.pm
@@ -1,6 +1,6 @@
package App::Condition::IsCreator;

# $Id$


use strict;
use base qw( Workflow::Condition );
Expand Down
2 changes: 1 addition & 1 deletion eg/ticket/App/Condition/IsWorker.pm
@@ -1,6 +1,6 @@
package App::Condition::IsWorker;

# $Id$


use strict;
use base qw( Workflow::Condition );
Expand Down
2 changes: 0 additions & 2 deletions eg/ticket/App/User.pm
@@ -1,7 +1,5 @@
package App::User;

# $Id$

use strict;

$App::User::VERSION = '1.01';
Expand Down
2 changes: 0 additions & 2 deletions eg/ticket/ticket_web.pl
@@ -1,7 +1,5 @@
#!/usr/bin/perl

# $Id$

use strict;
use App::Web;
use CGI;
Expand Down
4 changes: 1 addition & 3 deletions t/05_condition_nested.t
@@ -1,6 +1,4 @@
# --perl--
#
# vim: syntax=perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/Action/TicketComment.pm
@@ -1,7 +1,5 @@
package TestApp::Action::TicketComment;

# $Id$

use strict;
use base qw( Workflow::Action );
use Log::Log4perl qw( get_logger );
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/Action/TicketCreate.pm
@@ -1,7 +1,5 @@
package TestApp::Action::TicketCreate;

# $Id$

use strict;
use base qw( Workflow::Action );
use File::Spec::Functions qw( catdir );
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/Action/TicketUpdate.pm
@@ -1,7 +1,5 @@
package TestApp::Action::TicketUpdate;

# $Id$

use strict;
use base qw( Workflow::Action );
use Log::Log4perl qw( get_logger );
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/Condition/AlwaysTrue.pm
@@ -1,7 +1,5 @@
package TestApp::Condition::AlwaysTrue;

# $Id$

use strict;
use base qw( Workflow::Condition );
use Log::Log4perl qw( get_logger );
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/Condition/HasUser.pm
@@ -1,7 +1,5 @@
package TestApp::Condition::HasUser;

# $Id$

use strict;
use base qw( Workflow::Condition );
use Log::Log4perl qw( get_logger );
Expand Down
2 changes: 1 addition & 1 deletion t/TestApp/Condition/HasUserType.pm
@@ -1,6 +1,6 @@
package TestApp::Condition::HasUserType;

# $Id: HasUser.pm 290 2007-06-18 21:46:48Z jonasbn $


use strict;
use base qw( Workflow::Condition );
Expand Down
2 changes: 0 additions & 2 deletions t/TestApp/User.pm
@@ -1,7 +1,5 @@
package TestApp::User;

# $Id$

use strict;

$TestApp::User::VERSION = '0.01';
Expand Down
2 changes: 0 additions & 2 deletions t/TestCachedApp/Condition/EvenCounts.pm
@@ -1,7 +1,5 @@
package TestCachedApp::Condition::EvenCounts;

# $Id$

use strict;
use base qw( Workflow::Condition );
use Workflow::Exception qw( condition_error );
Expand Down
2 changes: 0 additions & 2 deletions t/TestUtil.pm
@@ -1,7 +1,5 @@
package TestUtil;

# $Id$

use strict;
use vars qw($VERSION);
use DateTime;
Expand Down
4 changes: 1 addition & 3 deletions t/action.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/action_field.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/action_mailer.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id: action_null.t 217 2004-12-09 16:02:45Z cwinters $
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/action_null.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
2 changes: 1 addition & 1 deletion t/action_validate.t
@@ -1,4 +1,4 @@
# -*-perl-*-
#!/usr/bin/env perl

# Test validation of additional action attributes during parse-time.

Expand Down
2 changes: 0 additions & 2 deletions t/add_config_bug.t
@@ -1,7 +1,5 @@
#!/usr/bin/perl

# $Id$

use strict;
use lib qw(../lib lib ../t t);
use TestUtil;
Expand Down
4 changes: 1 addition & 3 deletions t/base.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/condition.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/condition_evaluate.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/config.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
2 changes: 1 addition & 1 deletion t/context-persists.t
@@ -1,4 +1,4 @@
#! /usr/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
4 changes: 1 addition & 3 deletions t/context.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/exception.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/factory.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/factory_callback_config.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/factory_subclass.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/history.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/persister.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id: Persister.t 304 2007-07-03 14:56:43Z jonasbn $
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/persister_dbi.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/persister_dbi_extra_data.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use constant NUM_TESTS => 1;
Expand Down
3 changes: 1 addition & 2 deletions t/persister_dbi_sqlite.t
@@ -1,5 +1,4 @@
# -*-perl-*-

#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/persister_file.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
6 changes: 1 addition & 5 deletions t/persister_random_id.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down Expand Up @@ -32,5 +30,3 @@ is( $generator_long->id_length, 36,
my $id_long = $generator_long->pre_fetch_id;
is( length( $id_long ), 36,
'Value returned from generator correct length' );


4 changes: 1 addition & 3 deletions t/persister_spops.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/persister_uuid.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/state.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
2 changes: 1 addition & 1 deletion t/state_perl.t
@@ -1,4 +1,4 @@
# -*-perl-*-
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/validator.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/validator_has_required_field.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/validator_in_enumerated_type.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/validator_matches_date_format.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down
4 changes: 1 addition & 3 deletions t/workflow.t
@@ -1,6 +1,4 @@
# -*-perl-*-

# $Id$
#!/usr/bin/env perl

use strict;
use lib qw(../lib lib ../t t);
Expand Down

0 comments on commit 2edde90

Please sign in to comment.