5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-01 22:24:15 +00:00
panel/test/models/metadata_test.rb

20 lines
401 B
Ruby
Raw Permalink Normal View History

2021-05-13 22:41:39 +00:00
# frozen_string_literal: true
module MetadataTest
extend ActiveSupport::Concern
included do
setup do
name = SecureRandom.hex
# TODO: Poder cambiar el nombre
FileUtils.cp_r(Rails.root.join('test', 'fixtures', 'site_with_relationships'), Rails.root.join('_sites', name))
@site = create :site, name: name
end
teardown do
@site&.destroy
end
end
end