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

use strict;
use warnings;

# get rid of warnings
use Class::C3;
use MRO::Compat;

use Test::More;
use Tapper::Schema::TestTools;
use Test::Fixture::DBIC::Schema;

# -----------------------------------------------------------------------------------------------------------------
construct_fixture( schema  => testrundb_schema, fixture => 't/fixtures/testrundb/testrun_with_scheduling_run1.yml' );
# -----------------------------------------------------------------------------------------------------------------


my @modules = ('Tapper::Fake',
               'Tapper::Fake::Child',
               'Tapper::Fake::Master',
              );

plan tests => $#modules+1;

foreach my $module(@modules) {
        require_ok($module);
}