Sha256: 95dccc97aa8f4acf1e2d75c8a93539f5647d39aaaa69c2ce366390f913657178
Contents?: true
Size: 934 Bytes
Versions: 16
Compression:
Stored size: 934 Bytes
Contents
# frozen_string_literal: true describe 'Ridgepole::Client#dump' do context 'when there is a tables' do before { restore_tables_mysql_unknown_column_type } subject { client } it { expect(subject.dump).to match_fuzzy erbh(<<-ERB) create_table "clubs", <%= i cond('>= 5.1',id: :integer) %>, unsigned: true, force: :cascade do |t| t.string "name", default: "", null: false t.index ["name"], name: "idx_name", unique: true, <%= i cond(5.0, using: :btree) %> end ERB } it { expect(Ridgepole::Logger.instance).to receive(:warn).twice subject.dump } it { expect(Ridgepole::Logger.instance).to receive(:warn).with('[WARNING] Could not dump table "places" because of following StandardError') expect(Ridgepole::Logger.instance).to receive(:warn).with(" Unknown type 'geometry' for column 'location'") subject.dump } end end
Version data entries
16 entries across 16 versions & 1 rubygems