Sha256: bfd7d859f3661b06cc298ee4183a7eec6fd0b6493d04fed637a9d0e1bc898e97
Contents?: true
Size: 1.01 KB
Versions: 16
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true describe 'Ridgepole::Client#dump' do let(:actual_dsl) do erbh(<<-'ERB') create_table "books", unsigned: true, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='\"london\" bridge \"is\" falling \"down\"'" do |t| t.string "title", null: false t.integer "author_id", null: false t.datetime "created_at" t.datetime "updated_at" end ERB end context 'when without table options' do let(:expected_dsl) do erbh(<<-ERB) create_table "books", <%= i cond('>= 5.1',id: :bigint) %>, unsigned: true, force: :cascade, comment: "\\"london\\" bridge \\"is\\" falling \\"down\\"" do |t| t.string "title", null: false t.integer "author_id", null: false t.datetime "created_at" t.datetime "updated_at" end ERB end before { subject.diff(actual_dsl).migrate } subject { client } it { expect(subject.dump).to match_ruby expected_dsl } end end
Version data entries
16 entries across 16 versions & 1 rubygems