Re: [rspec-users] fixture_file_upload and edge rspec?

2007-11-11 Thread Leslie Freeman
Slowly digging to the bottom of this one. If I add Test::Unit::TestCase.fixture_path = RAILS_ROOT + '/spec/fixtures/' to my spec_helper.rb, then everything runs fine. So presumably there is somewhere that config.fixture_path from the Spec::Runner.configure block is supposed to get put into

Re: [rspec-users] fixture_file_upload and edge rspec?

2007-11-11 Thread Brian Takita
On Nov 11, 2007 8:29 AM, Leslie Freeman [EMAIL PROTECTED] wrote: Slowly digging to the bottom of this one. If I add Test::Unit::TestCase.fixture_path = RAILS_ROOT + '/spec/fixtures/' to my spec_helper.rb, then everything runs fine. So presumably there is somewhere that config.fixture_path

Re: [rspec-users] fixture_file_upload and edge rspec?

2007-11-11 Thread Brian Takita
On Nov 11, 2007 12:36 PM, Brian Takita [EMAIL PROTECTED] wrote: On Nov 11, 2007 8:29 AM, Leslie Freeman [EMAIL PROTECTED] wrote: Slowly digging to the bottom of this one. If I add Test::Unit::TestCase.fixture_path = RAILS_ROOT + '/spec/fixtures/' to my spec_helper.rb, then

Re: [rspec-users] fixture_file_upload and edge rspec?

2007-11-10 Thread Leslie Freeman
To follow up on this a little more, I created a new project, froze rails to edge (REVISION_8125), and installed rspec/rspec on rails from trunk. Then I generated an rspec_model for Asset with the following spec: require File.dirname(__FILE__) + '/../spec_helper' describe Asset do