Revert "Server URI can now include a prefix to the database name"

This reverts commit 14acd95444.
This commit is contained in:
Chris Anderson 2009-03-31 12:24:04 -07:00
parent 55271490e8
commit 09dcc9e5c2
2 changed files with 5 additions and 50 deletions

View file

@ -2,36 +2,6 @@ require File.dirname(__FILE__) + '/../../spec_helper'
describe CouchRest::Server do
describe "named databases" do
it "should generate database without prefix" do
couch = CouchRest::Server.new "http://192.0.2.1:1234"
db = couch.database("foo")
db.name.should == "foo"
db.uri.should == "http://192.0.2.1:1234/foo"
end
it "should generate database with prefix" do
couch = CouchRest::Server.new "http://192.0.2.1:1234/dev"
db = couch.database("foo")
db.name.should == "devfoo"
db.uri.should == "http://192.0.2.1:1234/devfoo"
end
it "should generate database with prefix and slash" do
couch = CouchRest::Server.new "http://192.0.2.1:1234/dev/"
db = couch.database("foo")
db.name.should == "dev/foo"
db.uri.should == "http://192.0.2.1:1234/dev%2Ffoo"
end
it "should generate database with slashes" do
couch = CouchRest::Server.new "http://192.0.2.1:1234/dev/sample/"
db = couch.database("foo/bar")
db.name.should == "dev/sample/foo/bar"
db.uri.should == "http://192.0.2.1:1234/dev%2Fsample%2Ffoo%2Fbar"
end
end
describe "available databases" do
before(:each) do
@couch = CouchRest::Server.new