mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
9 lines
228 B
Ruby
9 lines
228 B
Ruby
RSpec::Matchers.define :have_callback do |callback_name|
|
|
match do |instance|
|
|
instance.callbacks.include?(FactoryGirl::Callback.new(callback_name, @block))
|
|
end
|
|
|
|
chain :with_block do |block|
|
|
@block = block
|
|
end
|
|
end
|