Sha256: 5ddca42e7616fb135fd93d91954dcc356019e48544b9e23bdbc0419312acd12f

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

# encoding: utf-8
require 'jldrill/contexts/ShowAboutContext'

module JLDrill::Test
	class AboutView < JLDrill::ShowAboutContext::AboutView
	    attr_reader :about, :hasRun
	
		def initialize(context, about)
			super(context)
			@about = about
            @hasRun = false
		end
		
		def run
            @hasRun = true
		end
		
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jldrill-0.6.0.1 lib/jldrill/views/test/AboutView.rb