On Wed, Nov 19, 2008 at 3:03 AM, Bret Pettichord <[EMAIL PROTECTED]> wrote:
> Ben Mabey wrote:
>>
>> If that is not the issue please open a ticket on Lighthouse.
>
> I tried.
>
> lighthouse error
elaborate?
>
>
> ___
> rspec-users mailing list
> rspec-u
On Wed, Nov 19, 2008 at 2:46 AM, Bret Pettichord <[EMAIL PROTECTED]> wrote:
> Ben Mabey wrote:
>>
>> Are you using the latest cucumber from github?
>
> Yes. I did a git pull and reproduced the error right before reporting it.
>
This was fixed three days ago (!?)
http://github.com/aslakhellesoy/cuc
Hi Folks!
For any developers reading... thank you for RSpec... it's wonderful!
I've been trying my darndest to get into it, spec everything ahead of
time, and it's working out great.
The one thing I really have a hard time with though is writing more
advanced custom matchers. I can write simple
On Tue, Nov 18, 2008 at 9:55 PM, Marcelo de Moraes Serpa
<[EMAIL PROTECTED]> wrote:
> Thanks David, I added a .autotest file in my project root path and the new
> mapping. It worked like a charm!
Thank Ryan for offering a nice API to manage it - I just pointed you
to the docs :)
Cheers,
David
>
Thanks David, I added a .autotest file in my project root path and the new
mapping. It worked like a charm!
Marcelo.
On Wed, Nov 19, 2008 at 1:34 AM, David Chelimsky <[EMAIL PROTECTED]>wrote:
> On Tue, Nov 18, 2008 at 9:18 PM, Marcelo de Moraes Serpa
> <[EMAIL PROTECTED]> wrote:
> > Hello,
> >
>
On Tue, Nov 18, 2008 at 9:18 PM, Marcelo de Moraes Serpa
<[EMAIL PROTECTED]> wrote:
> Hello,
>
> We are creating tests for presenters (presenter pattern) classes. We are
> putting the implementation classes in app/presenters and we thought on
> putting the specs in spec/presenters. Question is, how
Hello,
We are creating tests for presenters (presenter pattern) classes. We are
putting the implementation classes in app/presenters and we thought on
putting the specs in spec/presenters. Question is, how could I extend the
autotest discover rules so that it will also monitor the presenter classe
If the form tag has an ID, you can use Webrat' new submit_form method
to do just this sort of thing.
-Bryan
On Tue, Nov 18, 2008 at 8:36 AM, Joseph Wilk <[EMAIL PROTECTED]> wrote:
> Zach Dennis wrote:
>>
>> On Tue, Nov 18, 2008 at 5:44 AM, Joseph Wilk <[EMAIL PROTECTED]>
>> wrote:
>>
>>>
>>> Mike
Matt Wynne wrote:
> It would be really helpful if you could file a bug report so that
> people can get onto fixing it:
> http://rspec.lighthouseapp.com/projects/5645-rspec/tickets/new
RSpec's Lighthouse is broken. I've tried submitting 2 tickets with no
luck. If someone on the RSpec team needs mo
Ben Mabey wrote:
If that is not the issue please open a ticket on Lighthouse.
I tried.
lighthouse error
___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users
Ben Mabey wrote:
Are you using the latest cucumber from github?
Yes. I did a git pull and reproduced the error right before reporting it.
Afterwards, I converted my test to use the new *.feature format and this
worked fine.
I am curious what the thinking is about supporting the old format.
Weird, it seems like a bug to me:
def Scenario(name, &proc)
add_scenario(name, &proc)
end
def add_scenario(name, line, &proc)
scenario = Scenario.new(self, name, line, &proc)
@scenarios << scenario
scenario
end
Scenario lacks a "line" argum
David Chelimsky wrote:
> On Tue, Nov 18, 2008 at 1:28 PM, Wayne Soh <[EMAIL PROTECTED]> wrote:
>> Hi,
>>
>> Where do I change the mappings of the specs in my rails app.
>> rspec/lib/autotest/rspec.rb?
>>
>> Given the latest versions in rspec, what is the bare minimum
>> plugins/gems that I need to
Bret Pettichord wrote:
I am trying to get some old "rbehave" scripts working with cucumber. I
am running into an error. I get the same error when I run the
"calculator_ruby_features" example.
Any suggestions?
Bret
Are you using the latest cucumber from github? There was a problem with
the
I am trying to get some old "rbehave" scripts working with cucumber. I
am running into an error. I get the same error when I run the
"calculator_ruby_features" example.
Any suggestions?
Bret
C:\work\cucumber\examples\calculator_ruby_features>rake features
(in C:/work/cucumber/examples/calcula
I'm trying to spec this method which is attempting to connect to
beanstalkd message queue. I'm trying to figure out how to spec this so
it catches the retry without actually retrying the block forever.
Any help would be appreciated.
def get_message(name, peek=false)
begin
if peek
Nick Hoffman wrote:
Before writing specs for a one-to-many relationship between two
models, I did some research and found that some people were creating
proxy mocks, and others were using Matthew Heidemann's
#stub_association! (which essentially does that for, but in a nice,
DRY way):
http:
Matt Wynne wrote:
> It would be really helpful if you could file a bug report so that
> people can get onto fixing it:
> http://rspec.lighthouseapp.com/projects/5645-rspec/tickets/new
Yep I'm trying to narrow it down to the simplest repro case.
Unfortunately I can only reproduce it in my rails ap
On 18 Nov 2008, at 17:06, Matt Griffith wrote:
Evan Dorn wrote:
I am having a very frustrating problem running specs on my current
project. When I run tests en masse with "rake spec" or with
autotest,
it frequently quits without completing all the tests. It also
sometimes runs the tests in
On Tue, Nov 18, 2008 at 1:28 PM, Wayne Soh <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Where do I change the mappings of the specs in my rails app.
> rspec/lib/autotest/rspec.rb?
>
> Given the latest versions in rspec, what is the bare minimum
> plugins/gems that I need to run autospec. I've been playing
Hi,
Where do I change the mappings of the specs in my rails app.
rspec/lib/autotest/rspec.rb?
Given the latest versions in rspec, what is the bare minimum
plugins/gems that I need to run autospec. I've been playing around and
installing too much stuff into my app that I'm confused :P
THanks!
Way
On Tue, Nov 18, 2008 at 11:36 AM, Matt McNeil <[EMAIL PROTECTED]> wrote:
>
> Hi there,
> After upgrading to the latest Rails RC (2.2.0) and rspec 1.1.11, I'm getting
> the following error in my specs (but not in the application itself):
>
> NoMethodError in 'ApplicationHelper#truncate_text truncate
Hi there,
After upgrading to the latest Rails RC (2.2.0) and rspec 1.1.11, I'm getting
the following error in my specs (but not in the application itself):
NoMethodError in 'ApplicationHelper#truncate_text truncates text to 270
characters'
undefined method `white_list_sanitizer' for
Spec::Rails::
Evan Dorn wrote:
> I am having a very frustrating problem running specs on my current
> project. When I run tests en masse with "rake spec" or with autotest,
> it frequently quits without completing all the tests. It also
> sometimes runs the tests in multiple batches, giving more than one
> res
On Tue, Nov 18, 2008 at 7:56 AM, Peter Jaros <[EMAIL PROTECTED]> wrote:
> Could you explain what doesn't work when you run autotest? Or, I
> suppose, what it *does* do? :)
>
> Also, does `script/cucumber features` work?
I originally ran 'script/generate cucumber' under 0.1.8. The
script/cucumber
On Mon, Nov 17, 2008 at 10:19 PM, Harry Love <[EMAIL PROTECTED]> wrote:
> Last week I installed Cucumber 0.1.8 for my Rails app and both
> 'cucumber features' and 'rake features' worked fine. Features and
> steps were evaluated.
>
> Today I upgraded Cucumber to 0.1.9 and tried to set up autotest.
Zach Dennis wrote:
On Tue, Nov 18, 2008 at 5:44 AM, Joseph Wilk <[EMAIL PROTECTED]> wrote:
Mikel Lindsaar wrote:
Hello all.
Wondering if anyone else has solved this.
Some websites (including the intranet app I am working on) have a form in
the top corner of the site that is buttonless
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 18 Nov 2008, at 05:41, Nick Hoffman wrote:
Before writing specs for a one-to-many relationship between two
models, I did some research and found that some people were creating
proxy mocks, and others were using Matthew Heidemann's
#stub_ass
On Tue, Nov 18, 2008 at 5:44 AM, Joseph Wilk <[EMAIL PROTECTED]> wrote:
> Mikel Lindsaar wrote:
>>
>> Hello all.
>>
>> Wondering if anyone else has solved this.
>>
>> Some websites (including the intranet app I am working on) have a form in
>> the top corner of the site that is buttonless. If you f
Mikel Lindsaar wrote:
Hello all.
Wondering if anyone else has solved this.
Some websites (including the intranet app I am working on) have a form
in the top corner of the site that is buttonless. If you focus on this
form enter text and hit enter, it submits. usually used for quick
search b
Hello all.
Wondering if anyone else has solved this.
Some websites (including the intranet app I am working on) have a form in
the top corner of the site that is buttonless. If you focus on this form
enter text and hit enter, it submits. usually used for quick search boxes.
Question, has anyone
Thanks for you replies. I reinstalled it and it works fine. It seems
that it didn't install properly before! :o thanks goodness that's it.
hehe
Ramon Tayag
On Mon, Nov 17, 2008 at 8:19 AM, David Chelimsky <[EMAIL PROTECTED]> wrote:
> Is this only happening in one rails app? or all of them?
Hi
I like using before_filter in controllers to dry up code. From what I
have read I understand that this is not something everyone agrees
upon. Never mind.
I was looking for a way in my controller spec's to basically 1. assert
that I have applied the before_filter on the actions I want
On 18 Nov 2008, at 05:41, Nick Hoffman wrote:
Before writing specs for a one-to-many relationship between two
models, I did some research and found that some people were creating
proxy mocks, and others were using Matthew Heidemann's
#stub_association! (which essentially does that for, but i
34 matches
Mail list logo