Tagged Questions
0
votes
0answers
23 views
using rake to run nested rspec modules
I have a project with the following structure
root
---- module1
---- ---- spec
---- module2
---- ---- spec
---- moduleN
---- ---- spec
the sub-modules names are dynamic, new ...
1
vote
0answers
52 views
Using rspec-spies `have_received` matcher
Looking at this blog post, I'm trying to set up my ability to use the matcher Object.should have_received(:action).with(*params) and can't seem to get it. To break things down, I wrote a really really ...
1
vote
1answer
49 views
What RSpec hook shall be used to perform clean up task after all tests are finished?
I have this situation in my project - I have a Singleton class representing browser used during the test:
class Browser
include Singleton
def initialize
@browser = Watir::Browser.new :ff
...
0
votes
3answers
55 views
Rspec or Rake which one is better [closed]
i have one simple question rspec or rake which one is better and more reliable.
Regards,
AB
0
votes
0answers
61 views
Rspec spec & Rake spec gives different result
This seems to be mostly asked question, i have an application when run in both rake and rspec the output seems to be different. When rspec spec -p command is used 0 failures message is displayed while ...
0
votes
2answers
28 views
Running multiple specs defined by input file
Given that I have an external file that will control which specs are being ran.
control.xls
test_id|description|file_path |run
1 |Test 1 |./spec/test1_spec.rb|yes
2 |Test 2 ...
1
vote
1answer
74 views
Why is rspec so slow under rake? ruby_noexec_wrapper?
I'd been having problems with my spec code taking a lot longer than expected to run, but when I tried to run them under rspec-prof, the problem seemed to go away. Eventually I tracked the difference ...
2
votes
0answers
57 views
specs run on an extracted Rails::Engine do not initialize/restore DB to pristine state as before
I've recently extracted a module to a Rails::Engine gem that contains a "dummy application" for running the tests on. rake spec now behaves differently, and is causing some specs to fail.
First, ...
0
votes
1answer
121 views
Rake in Rspec Ruby Does not Work
I'm having trouble using rake. I'm working on this course that is an intro to rspec.
it first says to install rspec so I enter gem install rspec.
ruby 1.9.3p385 (2013-02-06) [i386-mingw32]
...
0
votes
0answers
152 views
Rake aborted with rspec load error
I am trying to configure rake using rspec, so i required rspec and rspec/core/rake_task on top of the rakefile.I'm sure i have already installed the rspec gem, but then i got the rspec load error.
Any ...
1
vote
0answers
121 views
Rake/RSpec segmentation fault depends on Rake task format. Why?
Having an "interesting" segfault with a rake task. When run as quoted here from the command line, it works properly. If I run all rake tasks from a single system call, I get a segfault.
task :cruise ...
1
vote
0answers
69 views
How to create an RSpec Rake task using RSpec::Core::RakeTask?
How do I initialize an RSpec Rake task using RSpec::Core::RakeTask?
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
# what do I put in here?
end
The Initialize function ...
1
vote
1answer
230 views
Rake 10.0.3 runs the wrong version of Ruby in RVM
I ran bundle update rails on an RVM-based app today, and it updated Rake to 10.0.3 in the process. Now I can't run rake spec anymore because it's trying to use the system Ruby instead of the correct ...
0
votes
2answers
50 views
How to test simple rake application
i am using grape for creating rest api i created the api and its working fine now i have to test this api.when we create rails api there is automatically spec_helper.rb file is generated now as usual ...
0
votes
1answer
271 views
ruby on rails: rake not working with rspec [closed]
I'm doing a tutorial following the Addison Wesley Ruby On Rails book and I'm currently learning about TDD. The problem is that I have a problem using rake after installing rspec, here's what I get ...
0
votes
0answers
90 views
the info displayed in the html output using rspec show incorrect
There is a very interesting article of using rspec to get HTML output from running my Selenium2 (Webdriver) scripts in Ruby, here it is: ...
1
vote
1answer
353 views
How to call a rake task in rspec
I am trying to invoke a rake task in in my rspec.
require "rake"
rake = Rake::Application.new
Rake.application = rake
rake.init
rake.load_rakefile
rake['rake my:task'].invoke
But i am ...
1
vote
2answers
224 views
Passing format as parameter to rake spec
My question is similar to this , where they want to override rake spec's output format. The resolution to that question is to use the .rspec config file, which is limiting. I would like this to be a ...
2
votes
0answers
66 views
Run both TestUnit and RSpec when using rake
I started my project using TestUnit but now i'm looking to use RSpec instead.
To avoid re writing all the tests, it will be usefull if i could cohabit both of them when i'm launching rake.
Below my ...
2
votes
4answers
512 views
FactoryGirl screws up rake db:migrate process
I am doing TDD/BDD in Ruby on Rails 3 with Rspec (2.11.0) and FactoryGirl (4.0.0). I have a factory for a Category model:
FactoryGirl.define "Category" do
factory :category do
name "Foo"
end
...
2
votes
1answer
188 views
Validation fails when using FactoryGirl's sequence
I am pretty new to RSpec and FactoryGirl and trying to get my tests passed when using the factories for RSpec.
I have a spec/controllers/shares_controller_spec.rb spec that looks like this:
require ...
0
votes
0answers
114 views
RSpec Rake task ignoring my formatter preference; why?
Taking the ThoughBot blog's recent post on testing FactoryGirl I wanted to have Rake do the following for my Rails project:
The default target should be my tests
The tests should run a Factory check ...
3
votes
1answer
147 views
(apparently) identical tests for two rake tasks; only one passes
I'm trying to write tests in rspec for two rake tasks which are defined in the same file (in a Rails 3.0.11 project). For some reason only one of them passes. I've written a small demo to abstract ...
2
votes
1answer
152 views
rake spec runs test after specs
When I run rake spec in my Rails project it executes all specs and then tries to run tests (like rake test):
$ rake spec
ruby -S rspec ./spec/... #file list
# --> ... normal RSpec output
Finished ...
0
votes
1answer
264 views
Why does Timecop.freeze only work when I run my full spec suite?
I've got a large rails test suite and I'm using Timecop just once.
it "should not include votes from today" do
assert_equal 8, @answer.todays_score
end
it "should include today's votes tomorrow" ...
4
votes
2answers
1k views
Should I use “rake spec” or “rspec” (can't get “rake spec” to work)?
I am on Rails 3.2 and I am using rspec (2.11.1). When I run my test suite with "rake spec" I get failures. When I run it with "rspec" everything passes. I've seen other mentions of this problem but ...
0
votes
2answers
180 views
Running Rake loads its test suite?
At some point I started getting test output when running rake tasks, and I have no idea why.
$ rake -T
(task output)
Loaded suite /Users/tsigo/.rbenv/versions/1.9.2-p290/bin/rake
Started
Finished in ...
0
votes
0answers
143 views
Rake Task, Selenium Grid.. How to run my spec test in parallel
GUI Automation Tool: Webdriver
Parallel execution : Selenium Grid 2
Scripting language : Ruby
BDD Tool : Rspec
Steps:
Launch Selenium Grid:
java -jar selenium-server-standalone-2.22.0.jar -role ...
2
votes
2answers
278 views
Rails 3, rake db:test:prepare doesn't work when using a postgres Schema
I have a Rails 3.2.1 project that I'm trying to run my specs on.
When I run:
rake
rake aborted! PG::Error: ERROR: invalid value for parameter
"search_path": "example" DETAIL: schema "example" ...
0
votes
1answer
262 views
Ruby RSpec doesn't run tests
My rakefile selenium task doesn't run any tests and gives no error.
My files:
Rakefile
desc 'Selenium test'
task :selenium => [:init] do
RSpec::Core::RakeTask.new() do |t|
t.pattern ...
2
votes
0answers
289 views
RAILS_ENV=test being ignored in rake tasks running within rspec before:all
Rails 3.2.1, Ruby 1.9.3p125, rspec 2.8.0, rake 0.9.2.2
Rake::Task['namespace:task_name'].invoke refused to find namespace:task_name (namespace.rake is in Rails.root/lib/tasks). .execute - same.
So, ...
0
votes
0answers
58 views
Rake caches rspec tests or what?
When I run rspec tests via rake task I get
1) Whois::Record::Parser::WhoisUa status_available.expected#created_on
Failure/Error: lambda { @parser.created_on }.should ...
2
votes
1answer
2k views
Run RSpec tasks in a specific order
I have a bunch of RSpec Rake tasks defined that I'd like to run in a specific order when I run the entire suite of tests.
I've tried something like this:
task :run_in_order => [:one, :two, ...
1
vote
0answers
350 views
RakeTask.rspec_opts are ignored when specified in rake
I have a RakeTask that is defined in a file test.rake as
RSpec::Core::RakeTask.new(:pit) do |spec|
spec.ruby_opts = "-I lib:spec"
spec.rspec_opts = "--format html --out output.html --format ...
-1
votes
1answer
526 views
NameError: uninitialized constant, with RSpec
I'm trying to test my Jenkins Ruby plugin with RSpec.
My emailcomputerlistener.rb:
require 'net/smtp'
class EmailComputerListener
include Jenkins::Slaves::ComputerListener
def online(computer, ...
2
votes
1answer
1k views
Problems running Rake rspec task with ci_reporter
I am trying to configure rake to generate reports from rspec using ci_reporter for Hudson.
Using the rake file below, the same test that passes when run with the spec command fails running with the ...
9
votes
5answers
3k views
Rake db:test:prepare in Rails 3 app fails with file not found
I'm not sure why this is happening all of a sudden. I'd like to know how to resolve, please, if anyone else has run into this before or has ideas on where to look. Using bundle exec does not fix, has ...
1
vote
2answers
575 views
rspec failing - “Couldn't find table”, but rake db:test:prepare doesn't fix it
I've been doing a major refactor that required several migrations. All of a sudden, rspec is failing.
Could not find table 'users' (ActiveRecord::StatementInvalid)
The users table is right there ...
8
votes
2answers
531 views
RCov for RSpec 2 not detecting coverage correctly? (not Rails!)
Preface
I've just started getting into Ruby and try to not only learn the language but also some development strategies. As kind of a beginner I'm concentrating on Test and Behaviour Driven ...
0
votes
1answer
191 views
Whats is the replacement for spec_files in RSpec::Core::RakeTask ? Does pattern accept array of files?
I was previously using the older version : Spec::Rake::SpecTask.
I notice now spec_files is deprecated. What is the replacement for this?
Does pattern accept an array of files?
Thanks!
1
vote
2answers
772 views
How to have JunitFormatter output for Rspec run using Rake?
I have no problem running the rspec file using :
rspec -f JUnitFormatter -o junit.xml spec_test.rb
However each time I try rake to execute spec file, I get the following error
...
1
vote
2answers
104 views
How to get rake to use the 'integration' directory instead of 'requests' for integration tests?
I'd like to keep my integration tests in spec/integration. However when I generate one of these rake creates a spec/requests directory.
Is there a way to point the generator at another directory?
...
4
votes
2answers
5k views
Rails: how do I resolve the 'rake/rdoctask'' is deprecated' warning?
Just a forewarning: I'm a rails noob.
When I run:
rake db:migrate
I get this deprecation warning:
WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc ...
2
votes
0answers
352 views
Problems running rspec 2.8.0.rc1 within rbenv defined ruby 1.9.2p290 environment
This works:
[rails31]$ ruby -S rspec ./spec/models/domain_spec.rb
*.
Pending:
Domain add some examples to (or delete) /home/keith/Code/elements2/spec/models/domain_spec.rb
# Not Yet ...
9
votes
3answers
5k views
Auto-load the seed data from db/seeds.rb with rake
I'm using rails-rspec gem and I have several specs (models, controllers, etc). When I run:
bundle exec rake
everything is tested. However, I would like to improve my specs by seeding some data ...
1
vote
1answer
433 views
Creating a rake task for rspec in Jruby: no such file to load — spec/rake/spectask
JRuby 1.6.5 (ruby-1.9.2-p136)
Gems:
bundler (1.0.21)
diff-lcs (1.1.3)
rake (0.8.7)
rspec (2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
rspec-mocks (2.7.0)
sources (0.0.1)
In the rake file:
...
0
votes
2answers
562 views
How to test rake tasks, cron jobs, and
I know in Rails application, I can write tests for controllers and models by using Rspec.
But:
How about to test some rake task? What is the good way to test some rake task?
How about to test a ...
1
vote
1answer
261 views
rspec / rake issue - Rake::DSL global methods are clobbering my model somehow
I'm working through the upgrade to 3.1, and hit a snag.
I have a model (using Mongoid) that is having it's 'link' method overwritten by Rake, apparently. I'm getting this message:
WARNING: Global ...
0
votes
1answer
197 views
Rails validation exclusion with routes
I want to test that a user is invalid if the username equals one of the first routing blocks.
I spec it in rspec at the moment this way:
it "is not valid with a excluded username" do
`bundle exec ...
11
votes
1answer
2k views
Running Rake tasks in Rspec Tests
I building up an integration test suite and there is one bit of logic that I need to have a clean database for. How can I run the db:test:purge task inside of one of my tests?
I'm using: ruby 1.9.2, ...
