Sha256: f0d50781c118e55125fa22e758a11915392af9a008638c6dfcc9ffe8cb27d783

Contents?: true

Size: 1021 Bytes

Versions: 15

Compression:

Stored size: 1021 Bytes

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.integer("emp_no", {:null=>false, :unsigned=>true, :limit=>4})
          t.integer("club_id", {: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

15 entries across 15 versions & 1 rubygems

Version Path
ridgepole-0.6.5 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta14 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta13 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta12 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta11 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta10 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta9 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta8 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta7 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta6 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta5 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta4 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta3 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta2 spec/mysql/migrate/migrate_create_table_with_options_spec.rb
ridgepole-0.6.5.beta spec/mysql/migrate/migrate_create_table_with_options_spec.rb