Fix to columns_info_for for type(size)
[dbsrgits/DBIx-Class.git] / t / 05components.t
CommitLineData
6db94aca 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use Test::More;
6
7use lib qw(t/lib);
8use DBICTest::ForeignComponent;
9
10plan tests => 1;
11
12# Tests if foreign component was loaded by calling foreign's method
13ok( DBICTest::ForeignComponent->foreign_test_method, 'foreign component' );
14