module FactoryBot

def self.build_stubbed_starting_id=(starting_id)

The new starting id value.
* starting_id +Integer+
Arguments:

Set the starting value for ids when using the build_stubbed strategy
def self.build_stubbed_starting_id=(starting_id)
  Strategy::Stub.next_id = starting_id - 1
end