Sha256: 83e61b311d35b3439b5f236ec1bc9d7b545a1bcf8b16490937c40432ca21f48e
Contents?: true
Size: 282 Bytes
Versions: 26
Compression:
Stored size: 282 Bytes
Contents
class MockStartCommand attr_reader :started_apps attr_accessor :input def initialize @started_apps = [] end def start raise 'If you wanna test using :all, you implement it!' if input[:all] @started_apps = input[:apps] end def run(_) start end end
Version data entries
26 entries across 26 versions & 2 rubygems