10 lines
293 B
Ruby
10 lines
293 B
Ruby
module Rscons
|
|
describe Builder do
|
|
describe "#run" do
|
|
it "raises an error if called directly and not through a subclass" do
|
|
expect{subject.run(:target, :sources, :cache, :env, :vars)}.to raise_error /This method must be overridden in a subclass/
|
|
end
|
|
end
|
|
end
|
|
end
|