Increase default pipe buffer size on VMS to 8192 on 64-bit systems.
[p5sagit/p5-mst-13.2.git] / cpan / Parse-CPAN-Meta / t / 19_errors.t
CommitLineData
de044c36 1#!/usr/bin/perl
2
3# Testing documents that should fail
4
5BEGIN {
6 if( $ENV{PERL_CORE} ) {
7 chdir 't';
8 @INC = ('../lib', 'lib');
9 }
10 else {
11 unshift @INC, 't/lib/';
12 }
13}
14
15use strict;
16BEGIN {
17 $| = 1;
18 $^W = 1;
19}
20
21use File::Spec::Functions ':ALL';
22use Parse::CPAN::Meta::Test;
23use Test::More tests => 1;
24
25
26
27
28
29#####################################################################
30# Missing Features
31
32# We don't support raw nodes
33yaml_error( <<'END_YAML', 'does not support a feature' );
34---
35version: !!perl/hash:version
36 original: v2.0.2
37 qv: 1
38 version:
39 - 2
40 - 0
41 - 2
42END_YAML
43