File: Catmandu-Fix-add_to_store.t

package info (click to toggle)
libcatmandu-perl 1.2024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,552 kB
  • sloc: perl: 17,037; makefile: 24; sh: 1
file content (27 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use Test::Exception;
use Catmandu;

my $pkg;

BEGIN {
    $pkg = 'Catmandu::Fix::add_to_store';
    use_ok $pkg;
}

Catmandu->config->{store}{test} = {package => "Hash",};

my $bag = Catmandu->store('test')->bag('test');

my $rec = {add => {_id => 1}};

$pkg->new('add', 'test', '-bag', 'test')->fix($rec);

is_deeply $rec->{add}, $bag->get(1);

done_testing 2;