Displaying 2 results from an estimated 2 matches for "blockless".
Did you mean:
lockless
2008 Oct 08
3
ArgumentError in "is a pending example" - block not supplied
We have a few unfinished examples in our code of the form
it "should and does do something" do
# stuff
end
it "should do something someday"
it "should and does do something else" do
# more stuff
end
Now since I upgraded my gem to rspec 1.8 today, the empty example is
failing with the error ArgumentError in "should do something someday":
2007 Oct 18
12
first cut at blockless given/when/then
Hi all,
I committed a first cut at blockless Givens/Whens/Thens to RSpec''s trunk:
cd /path/to/rspec/project
svn up
cd rspec
bin/spec examples/story/calculator.rb
Take a look at examples/story/calculator.rb to see what''s going on.
Needs docs!!!!
Thoughts welcome.
I''ve also got a cut at the plain text parser chec...