Sha256: 8ed53fea47acdbff61f7d99f7ac090c5de71f3d0877d509c4db7dd4025522453
Contents?: true
Size: 1.29 KB
Versions: 25
Compression:
Stored size: 1.29 KB
Contents
unless postgresql? if mysql_awesome_enabled? describe 'Ridgepole::Client#dump' do let(:actual_dsl) { <<-'RUBY' create_table "books", unsigned: true, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='\"london\" bridge \"is\" falling \"down\"'" do |t| t.string "title", limit: 255, null: false t.integer "author_id", limit: 4, null: false t.datetime "created_at" t.datetime "updated_at" end RUBY } context 'when without table options' do let(:expected_dsl) { <<-RUBY create_table "books", unsigned: true, force: :cascade do |t| t.string "title", limit: 255, null: false t.integer "author_id", limit: 4, null: false t.datetime "created_at" t.datetime "updated_at" end RUBY } before { subject.diff(actual_dsl).migrate } subject { client } it { expect(subject.dump).to eq expected_dsl.strip_heredoc.strip } end context 'when with table options' do before { subject.diff(actual_dsl).migrate } subject { client(dump_without_table_options: false) } it { expect(subject.dump).to eq actual_dsl.strip_heredoc.strip } end end end end
Version data entries
25 entries across 25 versions & 1 rubygems