Sha256: b7d1419511b984c29400b32e989e6a7676fecd7bcdab92f9d7b4a2d1df51229e
Contents?: true
Size: 521 Bytes
Versions: 15
Compression:
Stored size: 521 Bytes
Contents
$:.push File.dirname(__FILE__) require 'helper' class TestDataMinerProcess < Test::Unit::TestCase context '#inspect' do setup do @config = DataMiner::Config.new 'foo' end should 'describe a block' do process = DataMiner::Process.new(@config, 'something cool') { } assert_match /something cool/, process.inspect end should 'describe a method' do process = DataMiner::Process.new @config, :something_cool assert_match /something_cool/, process.inspect end end end
Version data entries
15 entries across 15 versions & 1 rubygems