Consider:
module X
def initialize(a)
super()
end
end
describe X do
it "is a module" do
X.should be_instance_of(Module)
end
end
This generates an error because #describe tries to include X into the
test harness and the test harness doesn't know about the extra
argument to #initialize.
The work around is to just use 'describe "X" do' but I spent a bit of
time just trying to figure out what was going on.
Why is #describe trying to include the module?
Gary Wright
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users