mirror of
https://github.com/czhu12/canine.git
synced 2025-12-16 16:35:10 -06:00
11 lines
199 B
Ruby
11 lines
199 B
Ruby
class AddOns::Save
|
|
extend LightService::Action
|
|
expects :add_on
|
|
|
|
executed do |context|
|
|
unless context.add_on.save
|
|
context.fail_and_return!("Failed to create add on")
|
|
end
|
|
end
|
|
end
|