Sha256: 3a134e4f1a4b7fe9ab60247f2a9c9c646c4d043d8cf415c7c7edc47a41663dbf
Contents?: true
Size: 1.13 KB
Versions: 35
Compression:
Stored size: 1.13 KB
Contents
describe 'Ridgepole::Client#diff -> migrate' do context 'when table already defined' do let(:dsl) { <<-EOS create_table "employees", primary_key: "emp_no", force: :cascade do |t| t.date "birth_date", null: false t.string "first_name", limit: 14, null: false t.string "last_name", limit: 16, null: false t.string "gender", limit: 1, null: false t.date "hire_date", null: false t.integer "age", unsigned: true, null: false t.date "updated_at" end create_table "employees", primary_key: "emp_no", force: :cascade do |t| t.date "birth_date", null: false t.string "first_name", limit: 14, null: false t.string "last_name", limit: 16, null: false t.string "gender", limit: 1, null: false t.date "hire_date", null: false t.integer "age", unsigned: true, null: false t.date "updated_at" end EOS } subject { client } it { expect { subject.diff(dsl) }.to raise_error('Table `employees` already defined') } end end
Version data entries
35 entries across 35 versions & 1 rubygems