We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf179fa commit 1a24728Copy full SHA for 1a24728
t/02-select.t
@@ -7,13 +7,13 @@ use CellBIS::SQL::Abstract;
7
my $sql_abstract = CellBIS::SQL::Abstract->new();
8
9
my $select1 = $sql_abstract->select('table_test', []);
10
-ok($select1 eq 'SELECT * FROM table_test', "[$select1] is true");
+ok($select1 eq 'SELECT * FROM table_test', "SQL Query [$select1] is true");
11
12
my $select2 = $sql_abstract->select('table_test', [], {
13
'orderby' => 'id_mhs_kelas',
14
'order' => 'asc',
15
'limit' => '5'
16
});
17
-ok($select2 eq 'SELECT * FROM table_test ORDER BY id_mhs_kelas ASC LIMIT 5', "[$select2] is true");
+ok($select2 eq 'SELECT * FROM table_test ORDER BY id_mhs_kelas ASC LIMIT 5', "SQL Query [$select2] is true");
18
19
done_testing();
0 commit comments