summaryrefslogtreecommitdiff
path: root/cpan/Parse-CPAN-Meta/t/19_errors.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Parse-CPAN-Meta/t/19_errors.t')
-rw-r--r--cpan/Parse-CPAN-Meta/t/19_errors.t43
1 files changed, 0 insertions, 43 deletions
diff --git a/cpan/Parse-CPAN-Meta/t/19_errors.t b/cpan/Parse-CPAN-Meta/t/19_errors.t
deleted file mode 100644
index baa06ad5b2..0000000000
--- a/cpan/Parse-CPAN-Meta/t/19_errors.t
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/perl
-
-# Testing documents that should fail
-
-BEGIN {
- if( $ENV{PERL_CORE} ) {
- chdir 't';
- @INC = ('../lib', 'lib');
- }
- else {
- unshift @INC, 't/lib/';
- }
-}
-
-use strict;
-BEGIN {
- $| = 1;
- $^W = 1;
-}
-
-use File::Spec::Functions ':ALL';
-use Parse::CPAN::Meta::Test;
-use Test::More tests => 1;
-
-
-
-
-
-#####################################################################
-# Missing Features
-
-# We don't support raw nodes
-yaml_error( <<'END_YAML', 'does not support a feature' );
----
-version: !!perl/hash:version
- original: v2.0.2
- qv: 1
- version:
- - 2
- - 0
- - 2
-END_YAML
-