OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/features/support/cleanup.rb

33 lines
392 B

module Support
module Cleanup
def self.to_clean(&block)
cleanings << block
end
def self.cleanup
cleanings.each do |block|
block.call
end
reset_cleanings
end
private
def self.cleanings
@cleanings ||= []
end
def self.reset_cleanings
@cleanings = []
end
end
end
After do
Support::Cleanup.cleanup
end