When I try and define (but not implement an it test) (pending method) using RSpec
describe "test" do
it "should not fail, but does"
end
I get this error when I try and run
ArgumentError in 'should not fail, but does'
wrong number of arguments (1 for 0)
Does anyone know why this is happening? Am I doing something wrong? (I am using Ruby 1.9.2 and RSpec 1.3.0). Can somebody please help me fix this problem?