Sha256: 0f8b0eb48a298123783923c7be677f2abc864b3357c4eeda5f2535f2ef2c23c1
Contents?: true
Size: 550 Bytes
Versions: 20
Compression:
Stored size: 550 Bytes
Contents
require File.join(File.dirname(__FILE__), %w[.. .. spec_helper]) describe SC::Buildfile::Commands, 'import' do include SC::SpecHelpers it "should import any tasks defined by the import" do buildfile1_path = fixture_path('buildfiles', 'installed', 'Buildfile') buildfile2_path = fixture_path('buildfiles', 'installed', 'Buildfile2') b = SC::Buildfile.define do import buildfile1_path, buildfile2_path end b.task_defined?(:installed_task).should be_true b.task_defined?(:installed_task2).should be_true end end
Version data entries
20 entries across 20 versions & 2 rubygems