Sha256: 4c2c228417c7b6081f3c8057e5a124e928d0b48d796d66038016767917e2acaf
Contents?: true
Size: 851 Bytes
Versions: 16
Compression:
Stored size: 851 Bytes
Contents
class ::CustomTextType def initialize(value) @value = value end def to_s @value.to_s end end shared_examples_for 'supporting other (unknown) type' do before :all do setup_test_environment end describe 'writing an object of unknown type' do before do @connection = DataObjects::Connection.new(CONFIG.uri) end after do @connection.close end before do @command = @connection.create_command("SELECT ad_description FROM widgets WHERE ad_description = ?") @command.set_types(::CustomTextType) @reader = @command.execute_reader('Buy this product now!') @reader.next! @values = @reader.values end after do @reader.close end it 'should return the correct entry' do @values.first.should == 'Buy this product now!' end end end
Version data entries
16 entries across 16 versions & 1 rubygems