1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/unit/memory_leak_spec.rb

39 lines
2 KiB
Ruby
Raw Normal View History

2012-11-06 05:51:14 -05:00
# require 'spec_helper'
2012-11-06 05:51:14 -05:00
# describe "state machines" do
2012-11-06 05:51:14 -05:00
# def number_of_objects(clazz)
# ObjectSpace.each_object(clazz) {}
# end
2012-11-06 05:51:14 -05:00
# def machines
# AASM::StateMachine.instance_variable_get("@machines")
# end
2012-11-06 05:51:14 -05:00
# it "should be created without memory leak" do
# machines_count = machines.size
# state_count = number_of_objects(AASM::SupportingClasses::State)
# event_count = number_of_objects(AASM::SupportingClasses::Event)
# puts "event_count = #{event_count}"
# transition_count = number_of_objects(AASM::SupportingClasses::StateTransition)
2012-11-06 05:51:14 -05:00
# load File.expand_path(File.dirname(__FILE__) + '/../models/not_auto_loaded/process.rb')
# machines.size.should == machines_count + 1 # + Process
# number_of_objects(Models::Process).should == 0
# number_of_objects(AASM::SupportingClasses::State).should == state_count + 3 # + Process
# puts "event_count = #{number_of_objects(AASM::SupportingClasses::Event)}"
# number_of_objects(AASM::SupportingClasses::Event).should == event_count + 2 # + Process
# number_of_objects(AASM::SupportingClasses::StateTransition).should == transition_count + 2 # + Process
2012-11-06 05:51:14 -05:00
# Models.send(:remove_const, "Process") if Models.const_defined?("Process")
# load File.expand_path(File.dirname(__FILE__) + '/../models/not_auto_loaded/process.rb')
# machines.size.should == machines_count + 1 # + Process
# number_of_objects(AASM::SupportingClasses::State).should == state_count + 3 # + Process
# # ObjectSpace.each_object(AASM::SupportingClasses::Event) {|o| puts o.inspect}
# puts "event_count = #{number_of_objects(AASM::SupportingClasses::Event)}"
# number_of_objects(AASM::SupportingClasses::Event).should == event_count + 2 # + Process
# number_of_objects(AASM::SupportingClasses::StateTransition).should == transition_count + 2 # + Process
# end
2012-11-06 05:51:14 -05:00
# end