Sha256: 7a6edb4dc97db16741523305b41095cdcbc860ddafa0e03cae8b507ce15f1fa4

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

require 'jldrill/contexts/RunCommandContext'

module JLDrill::Test

    class CommandView < JLDrill::RunCommandContext::CommandView

        attr_reader :updated

        def initialize(context)
            super(context)
            @updated = false
        end

        def update
            @updated = true
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jldrill-0.5.1.7 lib/jldrill/views/test/CommandView.rb