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

Version Path
data_objects-0.10.17 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.16 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.15 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.14 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.13 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.12 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.11 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.10 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.9 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.8 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.7 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.6 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.5 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.4 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.4.rc2 lib/data_objects/spec/shared/typecast/other_spec.rb
data_objects-0.10.4.rc1 lib/data_objects/spec/shared/typecast/other_spec.rb