6 use SQL::Abstract::Tree;
8 my $tree = SQL::Abstract::Tree->new({
12 'group by' => ['yo', 'seph'] ,
16 is $tree->newline, "\n", 'console profile appears to have been used';
17 ok !defined $tree->colormap->{select}, 'select correctly got undefined from colormap';
19 ok eq_array($tree->colormap->{'group by'}, [qw(yo seph)]), 'group by correctly got overridden';
20 ok ref $tree->colormap->{'order by'}, 'but the rest of the colormap does not get blown away';