aasm/spec
Daniel Nolan 5d22f691fe Fix ClassInvoker instantiating class twice
* I'm in the process of updating a rails app from rails 5.2 to rails 7.
  Currently the app is using AASM version 4.12.3. When I update to AASM
  version 5.x we start getting a failing spec in our app. The
  implementation uses the `after:` dsl and passes it a class.

  ``` ruby
   event :run_payment_create do
      transitions to: :active, after: Payment::GoCardless::Subscription::Charge
    end
  ```

  The spec in our app expects that class to receive new 1 time with the args
  passed from after, but the spec is failing saying that `Payment::GoCardless::Subscription::Charge`
  received `.new` with the expected args twice.
  I started debugging with `bundle open aasm` and pry and I found that the
  `ClassInvoker` has a `instance` method that memoizes the instance
  returned from the `retrieve_instance` method, but the `instance`
  method was only being used by `log_source_location` and `log_method_info`
  methods while `invoke_subject` was calling `retrieve_instance` directly
  resulting in `retrieve_instance` being called twice.
* Update `invoke_subject` method to use `instance.call` so that the
  instance will be memoized and subsequent calls to `instance` won't try
  to instantiate the class a second time.
2023-01-26 11:54:11 +08:00
..
generators Fix specs, rename job model to work 2018-11-15 14:48:31 +05:30
models Fixed an error in Ruby 3 when specifying a method that takes keyword arguments, such as event's before hook. (#777) 2022-04-14 23:31:56 +05:30
spec_helpers Fix mongoid specs by adding require in mongoid specs (#786) 2022-07-22 19:46:23 +05:30
unit Fix ClassInvoker instantiating class twice 2023-01-26 11:54:11 +08:00
database.rb add specs 2021-03-25 14:06:04 +05:30
database.yml using real database connections for testing to reduce dependency on Rails version (previously mocked away ActiveRecord connection, which is not used in Rails 3.1 anymore) 2011-08-31 23:49:09 +02:00
en.yml Fix tests for Localizer (#689) 2020-08-05 20:27:12 +05:30
localizer_test_model_deprecated_style.yml Adds specs for state#display_name for localization 2020-10-15 14:22:31 +05:30
localizer_test_model_new_style.yml Adds specs for state#display_name for localization 2020-10-15 14:22:31 +05:30
spec_helper.rb Fix tests for Localizer (#689) 2020-08-05 20:27:12 +05:30