No tabs, no trailers
[scpubgit/Q-Branch.git] / t / 12format_keyword.t
index a1cd8d8..be31a6a 100644 (file)
@@ -5,20 +5,20 @@ use Test::More;
 use SQL::Abstract::Tree;
 
 my $sqlat = SQL::Abstract::Tree->new({
-       colormap => {
-      select     => ['s(', ')s'],
-      where      => ['w(', ')w'],
-      from       => ['f(', ')f'],
-      join       => ['j(', ')f'],
-      on         => ['o(', ')o'],
-      'group by' => ['gb(',')gb'],
-      'order by' => ['ob(',')ob'],
-       },
+  colormap => {
+    select     => ['s(', ')s'],
+    where      => ['w(', ')w'],
+    from       => ['f(', ')f'],
+    join       => ['j(', ')f'],
+    on         => ['o(', ')o'],
+    'group by' => ['gb(',')gb'],
+    'order by' => ['ob(',')ob'],
+  },
 });
 
 for ( keys %{$sqlat->colormap}) {
-       my ($l, $r) = @{$sqlat->colormap->{$_}};
-       is($sqlat->format_keyword($_), "$l$_$r", "$_ 'colored' correctly");
+  my ($l, $r) = @{$sqlat->colormap->{$_}};
+  is($sqlat->format_keyword($_), "$l$_$r", "$_ 'colored' correctly");
 }