Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove tests for Increase/Decrease depreciation
  • Loading branch information
lizmat committed Nov 21, 2014
1 parent fe21439 commit 0db5a86
Showing 1 changed file with 1 addition and 31 deletions.
32 changes: 1 addition & 31 deletions S02-types/deprecations.t
Expand Up @@ -2,42 +2,12 @@ use v6;

use Test;

plan 13;
plan 11;

# currently deprecated core features

my $line;

# Decrease
#?niecza skip 'is DEPRECATED NYI'
{
$line = $?LINE; Decrease;
is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'deprecation Decrease';
Saw 1 call to deprecated code during execution.
================================================================================
Sub Decrease (from GLOBAL) called at:
$*PROGRAM, line $line
Deprecated since v2013.11, will be removed with release v2014.11!
Please use More instead.
--------------------------------------------------------------------------------
TEXT
} #1
# Increase
#?niecza skip 'is DEPRECATED NYI'
{
$line = $?LINE; Increase;
is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'deprecation Increase';
Saw 1 call to deprecated code during execution.
================================================================================
Sub Increase (from GLOBAL) called at:
$*PROGRAM, line $line
Deprecated since v2013.11, will be removed with release v2014.11!
Please use Less instead.
--------------------------------------------------------------------------------
TEXT
} #1
# $*OS
#?niecza skip 'is DEPRECATED NYI'
{
Expand Down

0 comments on commit 0db5a86

Please sign in to comment.