Sha256: e9877a4338aef67a631513eb4f09884e92009be8ea3af1ba8c4b9d5daca63fa3
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
describe 'Ridgepole::Client#diff -> migrate' do context 'when change mysql table options' do let(:actual_dsl) { erbh(<<-EOS) create_table "employees", primary_key: "emp_no", force: :cascade, options: "ENGINE=MyISAM DEFAULT CHARSET=utf8" do |t| t.date "birth_date", null: false t.string "first_name", limit: 14, null: false t.string "last_name", limit: 16, null: false t.string "gender", limit: 1, null: false t.date "hire_date", null: false end EOS } let(:expected_dsl) { erbh(<<-EOS) create_table "employees", primary_key: "emp_no", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=ascii" do |t| t.date "birth_date", null: false t.string "first_name", limit: 14, null: false, <%= i cond(5.2, collation: "utf8_general_ci") %> t.string "last_name", limit: 16, null: false, <%= i cond(5.2, collation: "utf8_general_ci") %> t.string "gender", limit: 1, null: false, <%= i cond(5.2, collation: "utf8_general_ci") %> t.date "hire_date", null: false end EOS } before { subject.diff(actual_dsl).migrate } subject { client(dump_without_table_options: false, mysql_change_table_options: true) } it { delta = subject.diff(expected_dsl) expect(delta.differ?).to be_truthy expect(subject.dump).to match_ruby actual_dsl delta.migrate expect(subject.dump).to match_ruby expected_dsl } end end
Version data entries
3 entries across 3 versions & 1 rubygems