Sha256: 81f09395b3dad99ba97ee2f9d6a42b0b0fd3e2c1285eadee3e20f70f1f009c6f

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

describe 'Ridgepole::Client#diff -> migrate' do
  context 'when create table' do
    let(:expected_dsl) {
      <<-EOS
        create_table "employee_clubs", force: :cascade do |t|
          t.integer "emp_no",  null: false, unsigned: true
          t.integer "club_id", null: false, unsigned: true
        end

        add_index "employee_clubs", ["emp_no", "club_id"], name: "idx_emp_no_club_id", using: :btree
      EOS
    }

    subject { client(table_options: 'ENGINE=MyISAM CHARSET=utf8') }

    it {
      delta = subject.diff(expected_dsl)
      expect(delta.differ?).to be_truthy

      expect(delta.script).to match_fuzzy <<-EOS
        create_table("employee_clubs", {:options=>"ENGINE=MyISAM CHARSET=utf8"}) do |t|
          t.column("emp_no", :"integer", {:null=>false, :unsigned=>true, :limit=>4})
          t.column("club_id", :"integer", {:null=>false, :unsigned=>true, :limit=>4})
        end
        add_index("employee_clubs", ["emp_no", "club_id"], {:name=>"idx_emp_no_club_id", :using=>:btree})
      EOS
    }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ridgepole-0.6.6 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.6.beta3 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.7.0.alpha spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.6.beta2 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.6.beta spec/mysql/migrate/migrate_create_table_with_options_spec.rb