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 31 32 33 34 35 36 37 38 39
|
require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
describe DataObjects::Transaction do
before :each do
@connection = mock("connection")
DataObjects::Connection.should_receive(:new).with("mock://mock/mock").once.and_return(@connection)
@transaction = DataObjects::Transaction.new("mock://mock/mock")
end
it "should have a HOST constant" do
DataObjects::Transaction::HOST.should_not == nil?
end
describe "#initialize" do
it "should provide a connection" do
@transaction.connection.should == @connection
end
it "should provide an id" do
@transaction.id.should_not == nil
end
it "should provide a unique id" do
DataObjects::Connection.should_receive(:new).with("mock://mock/mock2").once.and_return(@connection)
@transaction.id.should_not == DataObjects::Transaction.new("mock://mock/mock2").id
end
end
describe "#close" do
it "should close its connection" do
@connection.should_receive(:close).once
lambda { @transaction.close }.should_not raise_error(DataObjects::TransactionError)
end
end
[:prepare, :commit_prepared, :rollback_prepared].each do |meth|
it "should raise NotImplementedError on #{meth}" do
lambda { @transaction.send(meth) }.should raise_error(NotImplementedError)
end
end
end
|