Simplify default entries sub, removing hanging $1/$2 refs.
[matthijs/upstream/blosxom.git] / t / interpolate / config / blosxom.conf
1 $blog_title = 'Interpolation Testing';
2 $blog_description = 'Terpolation Turpentine';
3 $datadir = "$ENV{BLOSXOM_CONFIG_DIR}/../data";
4 use vars qw(%hash $hashref $hash);
5 %hash = (
6   abc => 123,
7   def => 456,
8   'X-Factor' => 789,
9 );
10 $hashref = {
11   abc => 123,
12   def => 456,
13   'X-Factor' => 789,
14 };
15 $Blosxom::Test::string = 'this is a test';
16 %Blosxom::Test::hash = (
17   abc => 123,
18   def => 456,
19   'X-Factor' => 789,
20 );
21 $Blosxom::Test::hashref = {
22   abc => 123,
23   def => 456,
24   'X-Factor' => 789,
25 };
26 # Silence $hash warnings
27 $hash = '';
28
29 1;