5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-26 06:36:09 +00:00
panel/test/models/deploy_local_test.rb

21 lines
640 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-09-16 16:15:20 +00:00
require 'test_helper'
class DeployZipTest < ActiveSupport::TestCase
test 'se puede deployear' do
deploy_local = create :deploy_local
assert deploy_local.deploy
assert File.directory?(deploy_local.destination)
assert File.exist?(File.join(deploy_local.destination, 'index.html'))
assert_equal 3, deploy_local.build_stats.count
assert deploy_local.build_stats.map(&:bytes).compact.inject(:+).positive?
assert deploy_local.build_stats.map(&:seconds).compact.inject(:+).positive?
assert deploy_local.destroy
assert_not File.directory?(deploy_local.destination)
end
end