s/Unqlite/UnQLite/g
This commit is contained in:
parent
15245d2e1c
commit
2e3159537d
9 changed files with 48 additions and 46 deletions
|
@ -2,13 +2,13 @@ use strict;
|
|||
use Test::More;
|
||||
|
||||
use File::Temp qw(tempdir);
|
||||
use Unqlite;
|
||||
use UnQLite;
|
||||
|
||||
my $tmp = tempdir( CLEANUP => 1 );
|
||||
|
||||
my $db = Unqlite->open("$tmp/foo.db");
|
||||
my $db = UnQLite->open("$tmp/foo.db");
|
||||
{
|
||||
isa_ok($db, 'Unqlite');
|
||||
isa_ok($db, 'UnQLite');
|
||||
|
||||
ok($db->kv_store("foo", "bar"));
|
||||
ok($db->kv_store("hoge", "fuga"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue