Sha256: 24a3378dafea721092454e586aa2e4efea3275c0e6f2798623ca71350dc5b8da

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

describe 'Ridgepole::Client (with integer pk)' do
  context 'when with id:integer' do
    let(:dsl) do
      <<-RUBY
        create_table "books", id: :integer, force: :cascade do |t|
          t.string   "title", null: false
          t.integer  "author_id", null: false
          t.datetime "created_at"
          t.datetime "updated_at"
        end
      RUBY
    end

    subject { client }

    before { subject.diff(dsl).migrate }

    specify do
      expect(show_create_table(:books)).to include '`id` int(11) NOT NULL AUTO_INCREMENT'
      expect(subject.dump).to match_ruby dsl
    end
  end

  context 'when without id:integer' do
    let(:dsl) do
      <<-RUBY
        create_table "books", force: :cascade do |t|
          t.string   "title", null: false
          t.integer  "author_id", null: false
          t.datetime "created_at"
          t.datetime "updated_at"
        end
      RUBY
    end

    subject { client }

    before { subject.diff(dsl).migrate }

    specify do
      expect(show_create_table(:books)).to include '`id` bigint(20) NOT NULL AUTO_INCREMENT'
      expect(subject.dump).to match_ruby dsl
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ridgepole-0.9.5 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.4 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.3 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.2 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.1 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.0 spec/mysql/bigint_pk/int_pk_spec.rb
ridgepole-0.9.0.rc1 spec/mysql/bigint_pk/int_pk_spec.rb