5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 10:46:08 +00:00
panel/test/jobs/deploy_job_test.rb

22 lines
445 B
Ruby
Raw Normal View History

2019-07-26 00:36:33 +00:00
# frozen_string_literal: true
2019-09-16 16:44:29 +00:00
class DeployJobTest < ActiveSupport::TestCase
2019-07-26 00:36:33 +00:00
test 'se puede compilar' do
rol = create :rol
site = rol.site
site.deploys << create(:deploy_zip, site: site)
site.save
2019-09-16 16:44:29 +00:00
DeployJob.perform_async(site.id)
2019-07-26 00:36:33 +00:00
assert_not ActionMailer::Base.deliveries.empty?
site.deploys.each do |d|
2020-10-04 00:32:32 +00:00
assert File.exist?(d.respond_to?(:path) ? d.path : d.destination)
2019-07-26 00:36:33 +00:00
end
site.destroy
end
end