02:51
ashley_moran joined
03:52
<ashley_moran>
hi - does the --drb option still exist in rspec 2? i'm trying and failing to get spork working in rails 3
04:50
jschoolcraft joined
04:54
<BobFunk>
hey - have a problem with the rspec-2.0.0.beta.3 gem not installing any spec binary
04:55
<BobFunk>
theres a bin in JRUBY_HOME/lib/ruby/gems/1.8/gems/rspec-core-2.0.0.beta.3/bin/spec
04:55
<BobFunk>
but it complains about no such file to load -- rspec/autorun
04:55
<BobFunk>
if I try to run it
09:34
BrianTheCoder joined
12:22
technicalpickles joined
12:22
technicalpickles joined
15:27
PhilThompson joined
16:52
charlenopires joined
19:36
<GitHub69>
rspec-expectations: master Kabari Hendrick * ea852a5 (3 files in 2 dirs): Provide access to running_example in Matcher. Closes #2. -
http://bit.ly/9tnAFL
19:54
<GitHub128>
rspec-expectations: master David Chelimsky * bdb7966 (1 files in 1 dirs): tweak instance_exec
19:54
<GitHub128>
rspec-expectations: master David Chelimsky * cad36b9 (0 files in 0 dirs): watch this
19:54
<GitHub128>
rspec-expectations: master David Chelimsky * 5cfdcd3 (1 files in 1 dirs): what's wrong with super?
20:08
<GitHub125>
rspec-expectations: master David Chelimsky * 81be938 (2 files in 2 dirs): clean up the running_example speecs a bit -
http://bit.ly/agpY7S
20:54
<Z32Kyle>
I'm attempting to run specs and recieving this error.
20:55
<Z32Kyle>
"/spec/models/project_spec.rb:1:in `require': no such file to load -- spec_helper (LoadError)"
21:59
<foca>
how does rspec determine that specs under spec/controllers are controller specs? I have an example group *outside* there but want it recognized as a controller (basically I need @controller present to test the methods added to it)
22:01
<foca>
at first I thought :type => :controller would do it, but reading the code it's obvious it won't, and just calling controller_name 'my_test' blows up because 'undefined method `controller_name' for ActiveSupport::TestCase::Subclass_1::Subclass_4:Class'
22:03
<foca>
and I can't find anything in rspec-rails that says "make this a controller spec"
22:05
<foca>
(I've obviously tried describe MyTestController do..end, but then it complains that @controller is nil if I do get :index or something like that)
22:05
<foca>
so I'm not sure it's recognizing it as a subclass of ActionController::Base