SL::Dev::* - neue Helpermodule für Testcases und console
[kivitendo-erp.git] / SL / Dev / ALL.pm
1 package SL::Dev::ALL;
2
3 use strict;
4
5 use SL::Dev::Part;
6 use SL::Dev::CustomerVendor;
7 use SL::Dev::Inventory;
8
9 1;
10
11 __END__
12
13 =pod
14
15 =head1 NAME
16
17 SL::Dev::ALL: Dependency-only package for all SL::Dev::* modules
18
19 =head1 SYNOPSIS
20
21   use SL::Dev::ALL;
22
23 =head1 DESCRIPTION
24
25 This module depends on all modules in SL/Dev/*.pm for the convenience of being
26 able to write a simple C<use SL::Dev::ALL> and having everything loaded. This
27 is supposed to be used only for test cases or in the kivitendo console. Normal
28 modules should C<use> only the modules they actually need.
29
30 To automatically include it in the console, add a line in the client section of
31 the kivitendo.config, e.g.
32
33 [console]
34 autorun = require "bin/mozilla/common.pl";
35         = use SL::DB::Helper::ALL;
36         = use SL::Dev::ALL;
37
38 =head1 AUTHOR
39
40 G. Richardson E<lt>grichardson@kivitendo-premium.deE<gt>
41
42 =cut