Sha256: 185b23d910680bb1d0fdca3eab9a1bdaf2d77001351e90aeb90d0b4bc5e1bae3
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
describe 'Ridgepole::Client#diff -> migrate' do context 'when create table' do let(:expected_dsl) { <<-RUBY 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 RUBY } subject { client(table_options: 'ENGINE=MyISAM CHARSET=utf8') } it { delta = subject.diff(expected_dsl) expect(delta.differ?).to be_truthy expect(delta.script).to eq <<-RUBY.strip_heredoc.strip 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}) RUBY } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ridgepole-0.6.0.beta2 | spec/migrate/migrate_create_table_with_options_spec.rb |
ridgepole-0.6.0.beta | spec/migrate/migrate_create_table_with_options_spec.rb |