1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
require "spec_helper"
describe DataMigrate::Config do
it "sets default data_migrations_path path", :no_override do
expect(DataMigrate.config.data_migrations_path).to eq "db/data/"
end
describe "data migration path configured" do
before do
@before = DataMigrate.config.data_migrations_path
DataMigrate.configure do |config|
config.data_migrations_path = "db/awesome/"
end
end
after do
DataMigrate.configure do |config|
config.data_migrations_path = @before
end
end
it do
expect(DataMigrate.config.data_migrations_path).to eq "db/awesome/"
end
end
end
|