I agree.... I did notice that my feature/support/my_env.rb (custom) had: require 'spec' require 'spec/rails'
so I changed first line require 'spec/autorun' in keeping with http://wiki.github.com/dchelimsky/rspec/configgem-for-rails seems to me that really should do it, but it doesn't work.???? I've tried requiring spec_helper, etc. putting the requires closer to my code.,etc. nothing works!!!! btw: be_true and be_false work in my existing spec test; it's just in cucumber steps. ???? On Dec 24, 1:14 am, Matt Wynne <[email protected]> wrote: > On 24 Dec 2009, at 06:09, Doug wrote: > > > after upgrading cucumber to 5.1 be_true and be_false are undefined > > switching to == true or == false works. > > > ??? thanks. > > The rails integration changed quite a bit for that release. See [1] > plus a few recent threads on this list. > > It sounds like your specific problem is you don't have rspec's > matchers required anymore. > > [1]http://wiki.github.com/aslakhellesoy/cucumber/upgrading > > > > > > > Then there is an invalid item with 1 "upc" > > error # features/step_definitions/ > > extract_steps.rb: > > 56 > > undefined method `be_true' for > > #<ActionController::Integration::Session:0x104bc7820> (NoMethodError) > > ./features/step_definitions/extract_steps.rb:45:in `/^retrieve > > file$/' > > > Then /^retrieve file$/ do > > basename = File.basename(@filename) > > ExtractReport.exists?(:file_name => basename).should == > > true **** this is line 45 > > �...@file = ExtractReport.find_by_file_name(basename) > > count = @file.record_count.to_i - 2 # count includes header and > > trailer > > �[email protected] have(count).items > > end > > _______________________________________________ > > rspec-users mailing list > > [email protected] > >http://rubyforge.org/mailman/listinfo/rspec-users > > cheers, > Matt > > http://mattwynne.net > +447974 430184 > > _______________________________________________ > rspec-users mailing list > [email protected]http://rubyforge.org/mailman/listinfo/rspec-users _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
