Sha256: 173a0cbc41cb21fe1635857b88eec528d2e6716c4ec7293ebc5fb2a098e53022
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ridgepole-0.6.0.beta2 | spec/dump/dump_without_table_options_spec.rb |
ridgepole-0.6.0.beta | spec/dump/dump_without_table_options_spec.rb |