~ubuntu-branches/ubuntu/saucy/libyaml-libyaml-perl/saucy-security

« back to all changes in this revision

Viewing changes to t/load.t

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2009-06-01 02:17:22 UTC
  • Revision ID: james.westby@ubuntu.com-20090601021722-8qlj45pmu8ffwzau
Tags: upstream-0.32
ImportĀ upstreamĀ versionĀ 0.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use t::TestYAMLTests tests => 5;
 
2
 
 
3
spec_file('t/data/basic.t');
 
4
filters {
 
5
    yaml => ['parse_to_byte'],
 
6
    perl => ['eval'],
 
7
};
 
8
 
 
9
run_is_deeply yaml => 'perl';
 
10
 
 
11
sub parse_to_byte {
 
12
    Load($_);
 
13
}