Update vendored Sqlite3-ruby to 1.3.0
Also, some tweaks to Maruku.
This commit is contained in:
parent
9a80cacc34
commit
4f8759cdf3
55 changed files with 3071 additions and 8028 deletions
|
@ -2,7 +2,7 @@ require File.join(File.dirname(__FILE__), 'helper')
|
|||
|
||||
class TC_Statement < Test::Unit::TestCase
|
||||
def setup
|
||||
@db = SQLite3::Database.new( "test.db" )
|
||||
@db = SQLite3::Database.new(":memory:")
|
||||
@db.transaction do
|
||||
@db.execute "create table foo ( a integer primary key, b text )"
|
||||
@db.execute "insert into foo ( b ) values ( 'foo' )"
|
||||
|
@ -15,7 +15,6 @@ class TC_Statement < Test::Unit::TestCase
|
|||
def teardown
|
||||
@stmt.close
|
||||
@db.close
|
||||
File.delete( "test.db" )
|
||||
end
|
||||
|
||||
def test_remainder_empty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue