File: test_integration_open_close.rb

package info (click to toggle)
ruby-sqlite3 1.3.9-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 468 kB
  • ctags: 769
  • sloc: ruby: 3,824; ansic: 1,198; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'helper'

class TC_OpenClose < SQLite3::TestCase
  def test_create_close
    begin
      db = SQLite3::Database.new( "test-create.db" )
      assert File.exist?( "test-create.db" )
      assert_nothing_raised { db.close }
    ensure
      File.delete( "test-create.db" ) rescue nil
    end
  end

  def test_open_close
    begin
      File.open( "test-open.db", "w" ) { |f| }
      assert File.exist?( "test-open.db" )
      db = SQLite3::Database.new( "test-open.db" )
      assert_nothing_raised { db.close }
    ensure
      File.delete( "test-open.db" ) rescue nil
    end
  end

  def test_bad_open
    assert_raise( SQLite3::CantOpenException ) do
      SQLite3::Database.new( "." )
    end
  end
end