allow easier, single-file options for TC and TDB
[metropolis.git] / test / test_tdb_single.rb
blobe04fe2f40a59c56b891988f8a8d69847cbf43774
1 # -*- encoding: binary -*-
2 require './test/rack_read_write.rb'
3 $-w = true
4 require 'metropolis'
6 class Test_TDB_Single < Test::Unit::TestCase
7   attr_reader :tmp, :o, :uri
8   include TestRackReadWrite
10   def setup
11     @tmp = Tempfile.new('tdb')
12     @path = @tmp.path + '.tdb'
13     @uri = "tdb://#{@path}"
14     @app_opts = { :uri => @uri }
15   end
17   def teardown
18     @tmp.close!
19     File.unlink(@path)
20   end
21 end