Sha256: 881f2876ec14bf52baa679003eb40baba0b46041c0ec5212dfecdd2c433c3713
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
require 'spec_helper' describe Storey::Dumper do describe '.dump' do context 'when the schema_format is :ruby' do before do Rails.configuration.active_record.schema_format = :ruby end it 'should create a db/schema.rb file' do schema_rb_path = File.join Rails.root, 'db', 'schema.rb' FileUtils.rm schema_rb_path if File.exists?(schema_rb_path) described_class.dump File.should exist(schema_rb_path) FileUtils.rm schema_rb_path if File.exists?(schema_rb_path) end context 'given a file is specified' do it 'should create the schema dump file in the specified location' do schema_rb_path = File.join Rails.root, 'db', 'schema2.rb' FileUtils.rm schema_rb_path if File.exists?(schema_rb_path) described_class.dump file: schema_rb_path File.should exist(schema_rb_path) FileUtils.rm schema_rb_path if File.exists?(schema_rb_path) end end end context 'when the schema_format is :sql' do before do Rails.configuration.active_record.schema_format = :sql end it 'should create a db/structure.sql file' do structure_path = File.join Rails.root, 'db', 'structure.sql' FileUtils.rm structure_path if File.exists?(structure_path) described_class.dump File.should exist(structure_path) FileUtils.rm structure_path end context 'when the file is specified' do it 'should create dump into the given file' do structure_path = File.join Rails.root, 'db', 'structure2.sql' FileUtils.rm structure_path if File.exists?(structure_path) described_class.dump file: structure_path File.should exist(structure_path) FileUtils.rm structure_path end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
storey-0.3.4 | spec/storey/dumper_spec.rb |
storey-0.3.3 | spec/storey/dumper_spec.rb |
storey-0.3.1 | spec/storey/dumper_spec.rb |