Sha256: 4ed786d8aa497729c0df0dedbca923e0a3f442d04a7151473963ce506ce51e0f
Contents?: true
Size: 477 Bytes
Versions: 20
Compression:
Stored size: 477 Bytes
Contents
require File.join(File.dirname(__FILE__), %w[.. .. spec_helper]) describe SC::Buildfile::Commands, 'build_task' do it "should add a new task to the buildfile" do b = SC::Buildfile.define do build_task :task1 end b.task_defined?(:task1).should_not be_nil end it "should add a new task with class BuilTask" do b = SC::Buildfile.define do build_task :task1 end b.lookup(:task1).class.should eql(SC::Buildfile::BuildTask) end end
Version data entries
20 entries across 20 versions & 2 rubygems