Sha256: d6624cdf8b2b54c47ab9ab605568c3ffae8714e796adfe348608a1b81bb4250e

Contents?: true

Size: 958 Bytes

Versions: 2

Compression:

Stored size: 958 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
require 'data_objects/spec/shared/typecast/date_spec'

describe 'DataObjects::Mysql with Date' do
  it_behaves_like 'supporting Date'
  it_behaves_like 'supporting Date autocasting'

  describe 'reading 0000-00-00' do
    before do
      @connection = DataObjects::Connection.new(CONFIG.uri)

      @connection.create_command("SET SESSION sql_mode = 'ALLOW_INVALID_DATES'").execute_non_query
      @connection.create_command("INSERT INTO widgets (release_date) VALUES ('')").execute_non_query

      @command = @connection.create_command("SELECT release_date FROM widgets WHERE release_date = '0000-00-00'")
      @reader = @command.execute_reader
      @reader.next!
      @values = @reader.values
    end

    after do
      @reader.close
      @connection.close
    end

    it 'returns the number of created rows' do
      expect(@values.first).to be_nil
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sbf-do_mysql-0.11.0 spec/typecast/date_spec.rb
sbf-do_mysql-0.10.17 spec/typecast/date_spec.rb