test/test_liquibase_task.rb in pgtk-0.8.1 vs test/test_liquibase_task.rb in pgtk-0.9.0

- old
+ new

@@ -1,8 +1,8 @@ # frozen_string_literal: true -# Copyright (c) 2019-2023 Yegor Bugayenko +# Copyright (c) 2019-2024 Yegor Bugayenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell @@ -45,9 +45,11 @@ Rake::Task['pgsql2'].invoke Pgtk::LiquibaseTask.new(:liquibase2) do |t| t.master = File.join(__dir__, '../test-resources/master.xml') t.yaml = ['file-is-absent', File.join(dir, 'cfg.yml'), 'another'] t.quiet = true + t.postgresql_version = '42.7.0' + t.liquibase_version = '3.2.2' end Rake::Task['liquibase2'].invoke end end end