A DRb server for testing frameworks (RSpec / Cucumber currently) that forks before each run to ensure a clean testing state.
1
vote
1answer
21 views
uninitialized constant RSpec with spork
I'm trying to get spork working with a rails 2.3.18 app
Here is part of my gemfile showing Rspec versions:
gem "rails", "2.3.18"
gem "haml", "3.1.8"
gem "twitter", :git => ...
1
vote
0answers
22 views
'Errno::ENOENT no such file/directory' intermittently with FactoryGirl & RSpec/Rails
Getting a bizarre error on my RSpec tests, intermittently, on different examples. They all pass 99.999% of the time (and did up until an hour or so ago) leading me to believe there's something crazy ...
1
vote
0answers
42 views
Rails rspec issues (cannot load such file --b (LoadError))
I'm following Hartl's guide to Ruby on Rails, and I'm currently trying to set up "guard" and "spork" for automating "rspec" testing. When I try to run
bundle exec rspec ...
0
votes
0answers
28 views
Spork, Vagrant, and Rspec
So, I'm working in a pretty complex development enviornment that is hard to replicate locally on my Mac, so we're using Vagrant boxes and Chef scripts to keep everyone on the same page. What I would ...
0
votes
0answers
14 views
Cucumber with Spork adding --no-profile
Whenever I run cucumber with the --drb command, the spork server runs the cucumber command with the additional arguments
["--format", "pretty", "--strict", "--tags", "~@wip", "features", ...
0
votes
0answers
46 views
rspec <top(required)> error - no other good information - what is the root cause?
Here is my setup:
rails 3.12.2, rspec 2.13.1, spork 0.9.2, mysql gem 0.3.11. I am new to RoR and rspec.
I run spork in the background with no issues reported in spork.
When I run my model ...
0
votes
1answer
84 views
RSpec 2.13.1 hanging in Ruby 1.9.3 with Rails 3.2.13 and Spork 1.0.0rc3
Trying to resurrect an old project by upgrading gems. Ran into an issue where RSpec hangs on startup with the '--drb' option.
By itself, 'rspec spec' works fine. But start 'spork' in another terminal ...
0
votes
0answers
20 views
how to start spork with foreman
I'm trying to use foreman to start an instance of unicorn and spork. Then guard should connect to existing instance of spork. Procfile:
web: bundle exec unicorn_rails -c ./config/unicorn.rb
...
3
votes
1answer
123 views
Run cucumber through spork
I have the Exception encountered: #<SystemExit: exit> error, when trying run cucumber through spork.
features/support/env.rb:
require 'rubygems'
require 'spork'
require 'cucumber/rails'
...
0
votes
1answer
39 views
How to include routing in ApplicationHelper Spec when running trough Spork?
I have an rspec spec:
require "spec_helper"
describe ApplicationHelper do
describe "#link_to_cart" do
it 'should be a link to the cart' do
helper.link_to_cart.should match ...
2
votes
1answer
88 views
Guard+Spork Issue (Guard::Spork failed to achieve its <start>,)
I ran Guard with Spork following Rails Tutorial by Michael Hartl and I confronted this issue. Below is the error message:
20:45:58 - INFO - Starting Spork for RSpec, Test::Unit
20:45:58 - ERROR - ...
1
vote
2answers
47 views
Spork rspec while using redis, raise Redis::InheritedError
If the code excute redis related function, it will raise
Redis::InheritedError: Tried to use a connection from a child process without reconnecting. You need to reconnect to Redis after forking.
...
8
votes
0answers
124 views
save_and_open_page and spork, spork is loosing test suite / output
When i run my rspec tests with spork, every time i use capybara's save_and_open_page, spork is loosing the test suite.. or maybe doesnt output anything anymore...
See the log
# => without ...
0
votes
1answer
97 views
No database cleaning or empty database
I can't manage to make my test suite work.
I've tried to mix and match different configurations. But the results are all the same for this view: either nothing gets cleaned between tests or either ...
0
votes
1answer
265 views
Rspec, guard, spork and capybara/selenium - configuration for js tests
I'm using this solution to avoid issues with the database during javascript tests.
The first run through the suite, the tests run fine, all passing.
If I run the entire suite again, they'll still ...
0
votes
1answer
84 views
Rspec extremely slow
My rspec tests seem to run extremely slow even with guard & spork.
Finished in 5.36 seconds
13 examples, 2 failures
I understand that there are several things I can do to optimize my tests ...
0
votes
1answer
27 views
Loading miniskirt with Spork TestUnit
I really like Miniskirt and Minitest but I am having issues loading the factories.rb file on each run using spork server. It goes:
cannot load such file -- factories (LoadError)
My factories.rb ...
0
votes
2answers
83 views
Rails server readline error when including Guard gem
I've bundle installed with the following gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.12'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails', '2.11.0'
gem 'guard-rspec', ...
0
votes
1answer
197 views
Guard Rspec Spork Rails 2 not starting
Im running rails 2.3.14 on ruby-1.9.2-p180
I'm trying to get guard rspec going.
I installed relevant gems, here are my file contents, for Gemfile, /spec/spec_helper.rb and Guardfile
Gemfile
...
1
vote
0answers
72 views
rspec cannot determine running spork server
spork starting output:
spork # =>
Using RSpec, Rails
-- Starting to fill pool...
Wait until at least one slave is provided before running tests...
** CTRL+BREAK to stop Spork and kill ...
0
votes
1answer
44 views
Configure vimrc based on environment variables
Is it possible to configure vimrc command mapping based on env variables?
For example, I'm using vim-ruby-test plugin which provides the following config:
let g:rubytest_cmd_test = "ruby %p"
I ...
0
votes
2answers
75 views
Request spec with Devise + Rspec2 + Spork/Guard
I have setup Rspec2 + Spork + Guard + Devise
My files are as follows
#spec_helper.rb
Spork.prefork do
#code
Dir[Rails.root.join('spec/support/**/*.rb')].each {|f| require f}
RSpec.configure do ...
0
votes
0answers
32 views
Guard ignoring Rspec exclude tag
I'm using Guard with Spork. Adding --tag ~js to the Rspec's cli options my Guardfile fails to prevent specs tagged with js: true from running.
Before running Rspec, Guard outputs:
Running tests with ...
2
votes
1answer
559 views
undefined local variable or method `root_path' (Rspec Spork Guard)
I have a newbie question :-)
I'm "creating" an app, and I use M. Hartl's Tutorial to do so. But I have some problems since I decided to change my routes.rb.
I know the question has already been ...
0
votes
1answer
197 views
Problems with Spork & Rspec in rubymine
Trying to use Rspec with Spork in RubyMine;
Gemfile:
gem 'spork', '~> 1.0rc'
.rspec:
--color
--drb
spec_helper.rb.
$ spork rspec
Using RSpec, Unknown
-- Starting to fill pool...
...
2
votes
2answers
335 views
Guard + spork + Rspec issue - How do I remove hooks to Test::Unit?
I have guard-spork running on my rails 3.2.11 project on Ubuntu 12.04.
I got my configuration from railstutorial.org.
Spork starts, then guard says it can't find spork to start, waits 30 secs, then ...
13
votes
3answers
1k views
Error on start when using Spork and Guard
Here's the problem. When added the Guard gem everything was fine when I was calling Guard.
When I added Spork, I get the following error that doesn't affect testing my tests but it brings it up every ...
0
votes
2answers
2k views
cannot load such file — mocha/object (LoadError)
When I run rspec to test, I got this error:
cannot load such file -- mocha/object (LoadError)
The problem is with the line: config.mock_with :mocha below
Here is my spec_helper.rb:
require ...
3
votes
1answer
341 views
Rspec/Guard/FactoryGirl returning erroneous 'undefined method' error
First, I have a valid factory/model, and this particular test runs fine through the console.
model
validate :some_condition
def some_condition
errors.add(:attribute, "cannot be less than 5") if ...
1
vote
2answers
111 views
spork/guard reload schema
I use spork and guard to speed up the test suite in my Rails 3.2 application. However the tests in guard behave strange after adding a new migration: they act as they don't know about the changes in ...
0
votes
0answers
74 views
Cannot install spork with ruby on rails
I am following micheal hartl's ruby on rails tutorial and am stuck where he installs spork for autotesting .
I do an install of spork and it shows succesfully installed and then I am trying to run ...
1
vote
1answer
62 views
Can I change the randomisation seed each run in Rspec with Guard/Spork?
I'm currently using Rspec for testing, along with Guard and Spork for convenience. I've noticed that unless I quit and restart Guard, the random seed does not change between runs. While this is not a ...
0
votes
1answer
90 views
Rails autoloading behaves strangely in RSpec with modules and subclasses with spork
In my Rails app I've added the following files:
app/models/baz.rb
lib/presenters/foo_presenter.rb
lib/presenters/foo_presenter/bar.rb
spec/models/baz_spec.rb
...
0
votes
1answer
184 views
undefined method `generators' for #<RSpec::Core::Configuration
I have rspec2 installed with spork and guard and when run the guard command, I get this error:
undefined method `generators' for #<RSpec::Core::Configuration:0x007fb3944b23b0> (NoMethodError)
...
0
votes
3answers
400 views
Spork and Guard EADDRINUSE
I'm building a rails app and using Spork/Guard/Rspec for testing.
I'm on a mac (10.6.8) -- here are the gems I'm using:
gem "rspec-rails", "~> 2.12.1"
gem "guard-rspec", "~> 2.3.3"
gem ...
2
votes
0answers
207 views
prepare called on a closed database rails rspec
I am trying to integrate BDD in my rails app via rspec. I am using guard and spork-rails to speed the monitoring process up. I am getting this error:
An error occurred in an after hook ...
5
votes
2answers
173 views
Rspec Options for testing rails app
When running a spec I am getting all the output of the database transaction as well:
lee$ rspec spec/mailers/
Connecting to database specified by database.yml
(0.1ms) BEGIN
User Exists (0.7ms) ...
0
votes
1answer
68 views
Scope staticly reference another model resulting table not found
I use in-memory database for testing. The schema is reloaded in every test.
Recently my rspec complains that a table is not found. The reason is that a scope is referencing another model at load ...
1
vote
0answers
58 views
Redefined constants - Rspec - SPork
Good morning,
I'm using the following trick (from http://mikbe.tk/2011/02/10/blazingly-fast-tests/) to ensure models get reloaded on each Rspec run with spork:
Spork.each_run do
load ...
5
votes
3answers
249 views
Using Spork with jasmine in rails
Since several months, I've used spork with rspec successfuly in a rails app. Now I try to add jasmine to this game, so I added to my Gemfile
gem 'headless'
gem 'jasmine'
gem 'jasmine-rails'
Jasmine ...
3
votes
1answer
140 views
Spork and minitest: testdrb exits with SystemExit exception
I have a Rails 3.2 project with spork-rails and spork-minitest installed. I also have an integration test that runs successfully (albeit very slowly) with the command rake test:integration.
Now, with ...
1
vote
1answer
102 views
Configuring Spork with ruby
I'm new to ruby. I'm watching Rails cast on Spork with Rspec and following the tutorial. I'm using just Ruby without Rails. I successfully installed the spork gem. But when I run the below command:
...
0
votes
1answer
124 views
Rails - Guard isn't loading changes
Im setting up a new project with:
ruby 1.9.3
rails 3.2.9
And I'm trying to configure rspec with guard and spork following Michael Hartl tutorial. I've already did this for other projects and it ...
0
votes
1answer
70 views
Why doesn't my guard & spork setup reload code in lib?
I'm using spork with guard. It correctly reloads spec and project code when it changes. But it doesn't reload code in lib. If I change code in lib, I have to restart guard. Even more odd, guard ...
0
votes
2answers
250 views
Michael Hartl's ROR 3.2 Tutorial - Chapter 9.4.2- test fail with error “NameError: uninitialized constant Admin”
Following the MH tutorial (2nd edition) all went fine (dev and tests with Rspec and Spork) until I run Rspec at the end of chapter 9 where the test fails with that error: "NameError: uninitialized ...
0
votes
1answer
332 views
Cucumber Error uninitialized constant ActionController::Dispatcher (NameError)
I'm getting the following error when running cucumber. I've looked at this post and other similar on here but no luck.
uninitialized constant ActionController::Dispatcher (NameError)
...
1
vote
2answers
133 views
Spork running and listening but not working
SOLVED: Took out the spork code in the guardfile and copy and pasted a working guardfile from another one of my apps that works with spork and guard.
I installed Guard and Spork into my app. Guard ...
0
votes
0answers
211 views
Autotest, minitest, spork capybara, test running fine individually, but not when run with entire test suite
I have successfully setup my test suite with minitest, capybara, spork and autotest to test a Rails 3.2.8 application.
I have an acceptance/integration test that runs successfully if run alone by ...
0
votes
1answer
123 views
How do you setup spork-rails on Windows 7?
I'm going through the Rails Tutorial and my tests are taking forever so I want to implement spork.
Since spork apparently doesn't work for rails anymore I have to do spork-rails instead. I updated ...
1
vote
1answer
457 views
Guard launches a console, displays comments with Time - INFO. How come?
I set up a new Rails app today according to the advanced setup in Michael Hartl's Rails Tutorial (http://youtu.be/FZ-b9oZpCZY and ...




