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