Sha256: 76d2e470c9850c27e876820d8bac90cae7444f8cc72261fc49ac15472e3645fc
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# Copyright (c) 2011 - 2013, SoundCloud Ltd., Rany Keddo, Tobias Bielohlawek, Tobias # Schmidt require File.expand_path(File.dirname(__FILE__)) + '/integration_helper' require 'lhm/table' require 'lhm/migration' require 'lhm/locked_switcher' describe Lhm::LockedSwitcher do include IntegrationHelper before(:each) { connect_master! } describe 'switching' do before(:each) do @origin = table_create('origin') @destination = table_create('destination') @migration = Lhm::Migration.new(@origin, @destination) end it 'rename origin to archive' do switcher = Lhm::LockedSwitcher.new(@migration, connection) switcher.run slave do table_exists?(@origin).must_equal true table_read(@migration.archive_name).columns.keys.must_include 'origin' end end it 'rename destination to origin' do switcher = Lhm::LockedSwitcher.new(@migration, connection) switcher.run slave do table_exists?(@destination).must_equal false table_read(@origin.name).columns.keys.must_include 'destination' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lhm-2.2.0 | spec/integration/locked_switcher_spec.rb |