Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
3k views

“autotest/rails […] doesn't […] exist. Aborting”

I'm finding that autotest has stopped working... $ autotest loading autotest/rails Autotest style autotest/rails doesn't seem to exist. Aborting. According to this blog post, the common reason for ...
6
votes
3answers
786 views

autotest shows blank

I installed the autotest gem and intend to use it with rspec. The problem is, when I run autotest under my rails app, all I see is : railsapp$ autospec loading autotest/rails_rspec ...
5
votes
3answers
1k views

autotest problem

I just installed Zentest 4.4.6 which includes autotest 4.4.6 and when I run autotest I get the following error: gems/ZenTest-4.6.0/lib/autotest.rb:226:in `autodiscover': undefined method `any?' for ...
5
votes
2answers
173 views

Zentest - How to stop automatic testing when red

I am trying to configure autotest so that when I run my test suite and I have a failing test, autotest stops testing and waits for me to make a change before testing again. With my current ...
3
votes
5answers
2k views

ZenTest autotest not running tests

I've had problems with autotest before which I resolved by downgrading from ZenTest 4.1.4 to 4.1.3. $ ruby -v ruby 1.8.7 (2008-08-11 patchlevel 72) [universal-darwin10.0] $ rails -v Rails 2.3.4 ...
2
votes
2answers
122 views

How can I get autotest to keep running my specs after failures without stopping?

This seems like a very bizarre problem and believe me I've done a lot of searching before posing the question here. I am using the latest version of Rails 3 and Rspec 2 with Ruby 1.9.2, and I can't ...
2
votes
1answer
196 views

Why does autotest sometimes re-run all specs immediately after a failure?

Sometimes after autotest runs specs and encounters an failure, it will immediately re-run all the specs in the project, which (a) I have no need for and (b) clears the terminal so I can't read the ...
2
votes
1answer
434 views

Autotest: “Could not run tests”. But nothing in the log

Autotest broke with rspec-rails 2.2.1 update. Now I can't get it working again.. .even after rolling back to rspec-rais 2.2.0. Only info I'm able to find is a Growl popup saying "App: Could not run ...
2
votes
2answers
669 views

Error running autotest on Windows 7 with Rails 3, Ruby 1.9.2

Installing and running Rails 3 and Ruby 1.9.2 on Windows 7 went rather smooth. It's only now that I want to run autotest that I'm running into problems. The error looks frustratingly simple, but I ...
2
votes
1answer
303 views

rake test finding tests. autotest not finding them

$ rake test $ rake test (in /Users/ethan/project/mtc/completestreets) /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I"lib:test" ...
1
vote
1answer
34 views

What does the autotest autoupdate module do?

https://github.com/seattlerb/zentest/blob/master/lib/autotest/autoupdate.rb It's not documented and I can't find any discussion about it on the web.
1
vote
0answers
91 views

Hotkeys for Ruby Autotest

It would be nice to have some more control over autotest besides Ctrl+C, which reruns all specs. When using autotest within my Rails 3 project I often find myself waiting for some specs to finish, ...
1
vote
2answers
567 views

ZenTest Error in Rails

I am following the tutorial on railstutoiral.org and encounter the following error: "ZenTest is not part of the bundle. Add it to Gemfile. (Gem::LoadError)." I have ZenTest (4.4.2) installed according ...
1
vote
3answers
73 views

How can I get autotest to notice changes in subdirectories?

I have some submodules organized like this: |-- app | |-- models | | |-- foo | | | |-- foo-1.rb | | | |-- foo-2.rb | | | |-- foo-3.rb | | |-- foo.rb How can I get ...
1
vote
4answers
368 views

Autotest-4.4.6/ZenTest-4.4.1 broken with Rspec2 and Rails3

ZenTest and Autotest have been updated on December 1st. After upgrading to the latest versions (Autotest-4.4.6/ZenTest-4.4.1), autotest won't discover my specs and tries to run the standard unit test. ...
1
vote
3answers
256 views

Autospec does nothing when I run

I have failing tests that show up when I do a 'rake spec' or the like. However when I run autospec it outputs the following then does nothing and returns me to the command prompt. $ autospec ...
1
vote
1answer
68 views

how to run .feature + _spec.rb + _test.rb with autotest

In one of my project with some existing code, some code is covered by _test.rb file, other is by _spec.rb and we introduced .feature It became a nice mixture of stuff to check. I am stumped how to ...
1
vote
1answer
157 views

How can I tell autotest to not rerun all tests unless I explicitly tell it to?

Autotest will rerun all tests every time my tests start passing when they were failing. I have a lot of tests, and for reasons I won't go into, rerunning all of them is painfully slow. How can I make ...
1
vote
2answers
594 views

Rails: using ZenTest / autospec to test specs in new directories

I am adding a directory for services classes in my rails application: app/services I would like to add specs for these classes in the directory: spec/services I added a spec to spec/services, but ...
1
vote
3answers
155 views

Autotest performance slowdown

I've been using ZenTest to run all the tests in my Rails project for years and it's always been quite nippy. However, on my Mac it has suddenly started taking 3 times as long to run all the tests. ...
1
vote
2answers
614 views

A pretty GUI for autotest

I was wondering if anyone knows of any nice GUIs for autotest? I already know about all the plugins distributed with autotest (growl, knotify etc.), what I want is a little more. I would like a GUI ...
1
vote
3answers
268 views

“_” parameter of Ruby block

I met this when I read ZenTest source code: Here is the definition of add_mapping method: def add_mapping(regexp, &proc) @test_mappings << [regexp, proc] end In the ...
0
votes
1answer
116 views

ZenTest not working with RSpec 2.7 and Rails 3.1.0

I've basically followed this RSpec guide on my simple Rails app, but when I run autotest I get $ autotest (Not running features. To run features in autotest, set AUTOFEATURE=true.) loading ...
0
votes
1answer
55 views

Could not find ZenTest-4.6.0 in any of the sources

I get Could not find ZenTest-4.6.0 in any of the sources When i'm trying to migrate my database using bundle exec rake db:migrate $ bundle show ZenTest ...
0
votes
1answer
145 views

How do I resolve a ZenTest-4.6.2 successfully installed & missing gem?

I'm loosely going through http://ruby.railstutorial.org/chapters/ and am at the point of preparing to test http://ruby.railstutorial.org/chapters/static-pages#sec:testing_tools . I listed the ...
0
votes
2answers
1k views

Why isn't autotest working?

I'm trying to use autotest for Rails development. It's supposed to run my tests automatically. Here's my setup: $ which ruby /usr/bin/ruby $ ruby -v ruby 1.8.7 (2009-06-12 patchlevel 174) ...
0
votes
0answers
442 views

rake spec cucumber complains about “no such file to load - ZenTest” despite ZenTest being installed

/home/soroush/.gem/ruby/1.8/gems/rails-2.3.5/lib/rails/gem_dependency.rb:119:Warning: Gem::Dependency#version_requirements is deprecated and will be removed on or after August 2010. Use ...
0
votes
1answer
226 views

Fastest rails test runner: spork and zentest?

I ran across a thread about slow rspec tests that made me wonder which rails test runner configuration will result in the fastest running recurring tests? I'm aware that ZenTest / autotest-rails can ...
0
votes
1answer
118 views

How do I get autotest (ZenTest) to see my namespaced stuff?

Autotest is supposed to map my tests to a class, I believe. When I have class Foo and class FooTest, autotest should see FooTest and say, "Hey, this test corresponds to the unit Foo, so I'll look for ...
0
votes
2answers
376 views

No colors when using autospec

When I'm using autospec to test a non-Rails Ruby project, I always have trouble getting my tests to show up red or green. When I run a regular 'spec spec/ --color' command I get normal red/green ...
0
votes
1answer
369 views

How to make rails autospec stop looping

I'm using autospec and when all tests are passing, the green messages pops up just once, but when the tests are NOT passing, it remains popping up infinite red windows in growl. Does anybody knows how ...
0
votes
1answer
56 views

Source code problem of ZenTest

Here is one method that monkey patched the Dir[] method from autotest class Dir class << self alias :old_index :[] def [](*args) $-w, old_warn = false, $-w ...
0
votes
1answer
85 views

How ZenTest works in detecting file save?

I read some source code of ZenTest but didn't find where it is implemented. Could you give me give some clue? Thanks in advance.