Tagged Questions

Autotest is a Ruby gem for running tests automatically when source files change.

learn more… | top users | synonyms

9
votes
10answers
7k views

Why is Rspec saying “Failure/Error: Unable to find matching line from backtrace”?

I'm following the rails tutorial here: http://railstutorial.org/chapters/filling-in-the-layout#top When I run "rspec spec/", I get a bunch of errors that look like this: 1) LayoutLinks should have a ...
8
votes
5answers
960 views

Is there something like ZenTest/Autotest for Java and JUnit

I've used ZenTest and autotest to work on Ruby projects before, and I used to using them for test-driven development a la this configuration. I have a project that I'm currently working on in Java, ...
7
votes
2answers
2k views

How to combine autotest and spork in Rails testing?

Autotest increases the speed at which tests run by running only the changed tests. But I want to push it even further by using spork to preload the Rails environment, so that I will get even faster ...
6
votes
5answers
856 views

How do I troubleshoot autotest infinite loop problems?

I'm using cucumber, rails3, rspec2 and autotest. I'm trying to figure out why my features are infinitely looping. I suspect it some file being changed during the tests but I'm not sure which one. I've ...
6
votes
3answers
784 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 ...
5
votes
2answers
917 views

Platform specific gems for autotest with bundler

In the rails project I'm working on I inserted support for rspec, cucumber and autotest with this Gemfile (partial) gem 'rspec-rails' gem 'cucumber-rails' gem 'autotest-standalone' gem ...
5
votes
2answers
449 views

Is there an implementation of something like autotest-fsevent for windows?

Basically it's an extension for autotest that listens for notification from OS and allows autotest not to scan for file changes permanently while testing only necessary changes. It saves CPU and disk ...
4
votes
1answer
164 views

Error at the end of a capybara autotest… every time

With autospec / cucumber / capybara running my feature tests I get this line even after going green: (eval):1:in `initialize': can't convert String into Integer (TypeError) Anyone know what this is? ...
3
votes
1answer
77 views

What autotest tools exist for Clojure

I was wondering what autotest tools exists for clojure. In Ruby I have ZenTest, redgreeen etc to continuously keep on testing my code. I would like to have something similar for Clojure So far I have ...
3
votes
2answers
188 views

autotest wont stop after a test fails?

Here is my gemfile source 'http://rubygems.org' gem 'rails', '3.0.9' gem 'mysql2', '~> 0.2.6' group :development do gem 'rspec-rails' end group :test do gem 'rspec' end Fairly ...
3
votes
1answer
807 views

Getting Autotest to work with Cucumber

I'm trying to setup autotest to work with cucumber but despite following the tutorials it always finishes with: 0 tests, 0 assertions, 0 failures, 0 errors I see from this blog post that I need to ...
3
votes
3answers
632 views

Validation problem with Autotest and Factory Girl

i have a problem with Autotest. In my user model are the username & email address unique. When i start Autotest everything works fine. In the secound round, from autotest, i have a Validation ...
3
votes
1answer
325 views

ZenTest autotest not running tests

I'm running into the exact same problem as was posted at: http://stackoverflow.com/questions/1574896/zentest-autotest-not-running-tests. However, nothing on that article is helping me to solve the ...
3
votes
2answers
1k views

Autotest, Shoulda, Ruby - The Setup?

I am trying to get the whole setup working with Autotest/Growl/Shoulda on my Mac to test a gem I'm working on for Authlogic. I've used RSpec in the past quite a bit but would like to switch to ...
3
votes
2answers
734 views

invalid option: --autospec

/usr/local/bin/ruby -rrubygems -e "require 'redgreen'" /usr/local/lib/ruby/gems/1.8/gems/rspec-1.3.0/bin/spec --autospec <files_here> -O spec/spec.opts invalid option: --autospec Test::Unit ...
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
1answer
185 views

selenium and javascript, play auto-test with fancybox as a sample

As soon as I applied fancybox scripts into my playframework application, I can not use play auto-test selenium anymore for test that page where this script is applied. This is because it seems ...
2
votes
2answers
456 views

Rails 3 + Rspec 2 + Autotest: Autotest style Rspec2 doesn't seem to exist?

I updated my ruby gem and suddenly Autotest stopped to work.. After many attempts to fix without any debug information, I know have this: $ autotest loading autotest/rails_rspec2 You don't have i18n ...
2
votes
1answer
287 views

Why is AutoTest freezing on “loading autotest/rails_rspec2” for rails 3

Whenever I run autotest on a Rails 3 app (no custom tests yet) it hangs at loading autotest/rails_rspec2 and I'm still extremely new to Rails to know what to check/look for. I've included my gemfile ...
2
votes
2answers
505 views

Autotest ruby on rails with rspec

I'm using autotest with ruby on rails. I have passing 2 passing tests when I run. rspec spec/; however, when I try to use autotest this is the output: matt@matt-laptop:~/sample_app$ autotest loading ...
2
votes
1answer
299 views

RSpec Error - “Invalid Option”

I keep getting an issue when running RSpec with Autotest. My ~/.autotest file looks like this: require 'autotest/growl' require 'autotest/fsevent' Autotest.add_hook :initialize do |autotest| ...
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
356 views

rspec stack trace on autotest

I'm just getting into autotest and i have the following problem. How do I get autotest to print stack traces on errors. If i run "rake spec" i get output 4) Transaction should get date with poor ...
2
votes
1answer
433 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
2answers
2k views

Rails 3 - How do I get Rspec spec/ & autotest to work?

I was all setup with Rspec and Autotest before I updated to Rails 3. When running rspec spec/ I'm getting: * spec/spec.opts is deprecated. * please use ./.rspec or ~/.rspec instead. I tried ...
2
votes
1answer
123 views

Autotest stalls when launched

I'm trying to get a Rails (version 2.3.5) app set up to run RSpec and Autotest. I've got both rspec (1.2.9) and rspec-rails (1.2.9) vendored as plugins in the app. I then have ZenTest 4.4.0, Autotest ...
2
votes
1answer
476 views

Adding custom directories (source and spec) to autotest in a Rails 3 project

I have a Rails 3 app that uses RSpec2 as my testing framework, and I'm able to use autotest to watch my model and spec directories for changes and re-run my spec suite when files change. I'd like to ...
2
votes
1answer
301 views

Excluding a folder from autotesting

I've just installed a ZenTest to use autotest in my project. I use rspec and have an integration folder inside it. As I don't want all my integration tests run every single time I start autospec , so ...
2
votes
1answer
243 views

Error after second spec run with rspec and autospec

After installing rspec/ZenTest and running autospec, it runs my specs the first time as expected. After making a change to one of my specs and upon running the second time I get the following results: ...
2
votes
4answers
909 views

Passing options in autospec with Cucumber in Ruby on Rails Development

I always run autospec to run features and RSpec at the same time, but running all the features is often time-consuming on my local computer. I would run every feature before committing code. I would ...
2
votes
1answer
301 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" ...
2
votes
2answers
153 views

How do I manually specify the test files to run in autotest?

How do I manually specify which test/unit test files should be run when a non-test file gets updated?
2
votes
1answer
1k views

Shoulda, Rails Tests , and Autotest

I'm trying to model my tests after the great work that the Thougtbot guys have done. They seem to use the test framework built into Rails Shoulda. Great. I have been hearing a lot about Autotest - ...
1
vote
0answers
128 views

autotest, growl, and Ruby on Rails 3 Tutorial

I'm running through Ruby on Rails 3 tutorial, and have been having difficulties with the autotest. Many of them have been handled, but the solutions only seem to bring up subsequent issues. I am ...
1
vote
1answer
142 views

invalid multibyte char (US-ASCII) (SyntaxError) on lion, # encoding: utf-8 does not work

I am trying to install autotest with growl and fsevent on my mac, but got the following message as many others have got: loading autotest/rails_rspec2 ...
1
vote
1answer
102 views

No color in Rspec output but color in autotest

I'm running: + Ruby 1.9.2p290 + Rails 3.1.1 + Rspec 2.6.0 + autotest 4.4.6 + ansicon 1.40 + spork + growl on Windows Vista 64-bit to go through the rails 3 tutorial. The tests seem to run fine and I ...
1
vote
2answers
109 views

Autotest Error Message

Get the following error when I run autotest. The weird thing is that I don't have the folder /Library/Ruby/Gems/1.8/ but the folder /Library/Ruby/Gems/1.9.1/. Help? Thanks. Invalid gemspec in ...
1
vote
1answer
29 views

Advice on Rails and CI, how often does this run exactly? or what is common practice

First off, is autotest and cruisecontrol performing the same sort of CI tasks? I want to setup something that will run my unit tests, and also integration tests on my local MBP computer i.e. I don't ...
1
vote
4answers
387 views

Spork/Autotest not picking up changes automatically

I'm just working on my first rails application by following the tutorial at http://ruby.railstutorial.org/. I have setup my development environment exactly as what it says in the tutorial (I'm on ...
1
vote
1answer
128 views

autotest does not work with rspec shared examples

My tests look like this: <<< spec/models/user_shared.rb shared_examples_for "a user" do end <<< spec/models/worker_spec.rb require 'spec_helper' require 'models/user_shared' ...
1
vote
1answer
316 views

Compare Pros and Cons of Autofeature/autotest vs Guard?

Does anyone have any concrete reasoning for using one autotesting runner over another? I've used both Autofeature+autotest, I really like the built-in process that this sets up in that it runs my ...
1
vote
1answer
139 views

issue with helper method in rails

I have the following helper method (app/helpers/application_helper.rb): module ApplicationHelper #Return a title on a per-page basis def title base_title = "Ruby on Rails Tutorial Sample App" ...
1
vote
2answers
204 views

How do you test dates in ruby on rails 3 with rspec?

Say for instance I have a datefield or 3 select fields for day month and yea.. How does the final selection of date get sent to the database? or in what format doesn't it get sent? 20110803 ? ...
1
vote
0answers
34 views

Mocha's regexp_matches missing some times

I'm having a hard time getting any consistant behavior from Mocha and the regexp_matches method. If autotest runs my entire test suite everything works fine. If I purposely cause the test containing ...
1
vote
2answers
188 views

Can't install autotest 4.4.6

I'm using RVM, and when I attempt to install autotest with: rvmsudo gem install autotest and get Fetching: autotest-4.4.6.gem (100%) Successfully installed autotest-4.4.6 1 gem installed ...
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 2 3 4