The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

eval "use DBD::SQLite";
plan skip_all => "DBD::SQLite is required for running this test" if $@;

plan tests => 3;

use lib 't/lib';

use Article;
use ArticleTagMap;
use Tag;

my $id;

my $article = Article->new(name => 'foo', tags => {name => 'foo'})->create;

$id = $article->column('id');

$article->delete_related('tags');

ok( not defined ArticleTagMap->find(where => [article_id => $id], single => 1)
);

$article = Article->new(id => $id)->load;

ok($article);

$article->delete;

my $tag = Tag->new(name => 'foo')->load;

ok($tag);

$tag->delete;