Displaying 1 result from an estimated 1 matches for "heckle_test".
2007 Oct 31
16
Am I missing something with Heckle?
...e so simple
that it either shows a bug, or I am being really, REALLY stupid.
Heckle does not appear to support RSpec directly, so I''m trying to use
spec --heckle (RSpec trunk as of 10 mins ago, Heckle 1.4.1). I''ve
constructed this pair of sample files:
18> ~/Desktop/heckle_test % cat lib/cow.rb
class Cow
def moo
"moo"
end
end
19> ~/Desktop/heckle_test % cat spec/cow_spec.rb
require ''rubygems''
require ''spec''
require File.dirname(__FILE__) + ''/../lib/cow.rb''
describe...