File: 08-none.t

package info (click to toggle)
libdbix-class-optimisticlocking-perl 0.02-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 270; sql: 51; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 919 bytes parent folder | download | duplicates (4)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use strict;
use warnings;
use Test::More;


BEGIN {
    eval "use DBD::SQLite";
    plan $@
      ? ( skip_all => 'needs DBD::SQLite for testing' )
      : ( tests => 6 );
    $DBD::SQLite::sqlite_version; # get rid of warnings
}

use lib 't/lib';

use_ok('DBIx::Class::OptimisticLocking');

use_ok( 'OLTest' );

use_ok( 'OLTest::Schema' );

my $s = OLTest->init_schema();

OLTest::Schema::TestDirty->optimistic_locking_strategy('none');
is(OLTest::Schema::TestDirty->optimistic_locking_strategy, 'none', 'strategy set to "none"');

my $r1 = $s->resultset('TestDirty')->new({
	col1 => 'a',
	col2 => 'a',
	col3 => 'a'
});
$r1->insert;
$r1->discard_changes;

my $r2 = $s->resultset('TestDirty')->find($r1->id);

$r1->col1('b');
$r2->col1('c');
$r1->update;
eval {$r2->update};
ok(!$@, 'no error thrown on conflicting update when mode set to "none"');
$r1->discard_changes;

is($r1->col1, 'c', 'second update succeeded');