Tagged Questions
0
votes
0answers
50 views
RSpec: uninitialized constant RSpec::Rails::ControllerExampleGroup::ActionController (NameError)
I'm writing some tests for this gem's generator methods and getting this error. I'm wondering what I'm missing in the config to test this properly. It seems to be related to loading the rails config ...
0
votes
1answer
46 views
Loading fixture in ruby gem tests using rspec
I am creating my first ruby gem and have a method that parses a Savon::Response object which comes from a soap api. I want to test my parse method and to do this I figure the easiest way is to have a ...
2
votes
1answer
145 views
undefined method 'assign_to' after updating shoulda-matchers
I updated 'shoulda-matchers' in the Gemfile in my rails project from version 1.4.2 to 2.0.0 and now when I run my rspec tests, it is giving me the following error
undefined method `assign_to' for ...
1
vote
1answer
305 views
Bundler won't let me install gems
I'm trying to eliminate these annoying DEPRECATION WARNINGS whenever I try to run rspec tests (I'm trudging through the Rails tutorial).
I tried following the suggestion here: rspec triggers ...
0
votes
1answer
40 views
Autotest is not loading in ruby on rails environment
I am having a problem with autotest. it doesn't seem to load as tutorial videos I have been seeing. this is what happens , it somewhat "freezes" and nothing is happening. As i speak :
$ autotest ...
1
vote
1answer
88 views
Installing gem without the internet availability
Yesterday I tried to install rspec gem on a system which was not connected to internet, so this is what I did-
I downloaded the gem for rspec using the command gem install rspec and on command prompt ...
0
votes
1answer
321 views
Capybara, Cucumber: page.find(<selector>).text returns only characters vwxyz
I am having the weirdest issue with capybara/cucumber/selenium/rspec.
I haven't been able to match any selectors by text with capybara. One example would be:
page.should have_selector('h2', ...
0
votes
1answer
136 views
framework integration testing within a gem: how to set up rspec controller test for a gem rails integration
This question is NOT about how to test controllers in a rails app.
Developing a gem I want to test if my gem integrates in a rails controller.
So running rspec in the gem root is outside the rails ...
1
vote
2answers
78 views
Writing tests in RSpec for a Gem
I'm trying to write RSpec tests for a gem I wrote, but I am having trouble getting the tests to recognize the Modules I wrote and the methods related to those Modules.
Here is my spec_helper.rb:
...
0
votes
2answers
36 views
Remarkable active record association
i'm using gem Remarkable activerecord for association. i've installed remarkable and remarkable activerecrod both gem. i've added both gem in my Gemfile. i've added "remarkable_activerecord" as ...
0
votes
1answer
85 views
How to get other Gem helpers into my Engine Gem's tests?
I'm trying to write tests for an engine gem I'm writing. I'm using Rspec and the tests seem to be running fine. But whenever a view uses a helper from another gem, such as "will_paginate" or ...
0
votes
1answer
65 views
How to test a helper within a gem with rspec?
I already published my first rails gem but not yet with any tests included. This gem is just a simple helper which I want to test with rspec. But I have no idea how I can test a helper within a gem ...
1
vote
1answer
206 views
Can I run a Rails engine's specs from a real app which mounts it?
I have a Rails Engine meant to provide some models and controllers to a larger project of ours. There's a pretty decent set of specs for the Engine, using a bunch of mocks and some full-scale models ...
1
vote
1answer
72 views
How to create and test a gem with Rspec and Cucumber
I have created a model that I use across applications.
module WeblabOnRails
class TimeOnly
#...
end
end
I put the code in my lib/weblab_on_rails/time_only.rb and I invoke it, each time ...
0
votes
1answer
498 views
How do I initialize a gem (guard-rspec) from inside of rubymine?
I'm n00b at rails so I may be missing something that is completely obvious :)
I just installed the guard-rspec gem with bundle install but I need to initialize it in RubyMine.
i.e.
bundle exec ...
0
votes
1answer
45 views
When installing a gem, should only the library get installed, or should the executable get installed as well?
I have installed RSpec with the gem (gem install rspec) command. Everything went ok. If I try to reinstall it again, I get a message like it has already been installed.
When I try to use rspec from ...
5
votes
2answers
576 views
Testing ActiveRecord models inside a gem?
I'm trying to extract a set of models from a Rails 3.2.3 app into a gem so they can be used as a shared interface between applications.
I moved the model into a module and put it in ...
0
votes
1answer
57 views
Reusing a Gem's rspec helpers
I have a gem, lock_jar, that changes Bundler classes at runtime. This allows Java Jar dependencies to be added to a Gemfile.
What I would love to do is reuse Bundler's rspec helpers. Right now I ...
17
votes
6answers
4k views
Ruby on Rails: Switch from test_unit to rspec
I'm going through a tutorial that has suggested using rspec, but I have already gone through a lot of default rails installation. I really don't want to have to redo the installation at all. Anyway, ...
1
vote
0answers
161 views
Test controllers in gem with RSpec
I wonder how to test controllers outside of rails - in a new gem.
How to mock them, and how to use Rails controller test helpers like get, post?
I am trying to test before_filter, that is executed ...
0
votes
1answer
66 views
Writing a test for a custom FormHelper gem patch
I forked the country_code_select gem and made a fix because it wasn't generating the ID attribute properly for nested fields_for models.
I've never written tests before or patched a gem - but I'm ...
19
votes
3answers
6k views
Invalid gemspec -Illformed requirement [“#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0”]
Invalid gemspec in [/usr/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0"]
From trying to do a sudo gem update ...
0
votes
1answer
477 views
Understanding path errors using Rails, link resource or answer please
Mac OSX 10.7.2,
Following a rails tutorial and have come to an error when:
rspec spec/
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in ...
1
vote
1answer
165 views
Packaging Rspec Shared Example Groups as a Gem
I have created several shared example groups for Rspec which I would like to reuse in other applications. The best approach to achieving this seems to be to package these into a gem. However I can't ...
15
votes
2answers
3k views
Rails 3.1 plugin gem, dummy test app, rspec
So Rails 3.1 comes with a little-known handy "rails g plugin new" generator, which gives you a skeleton suitable for a rails gem plugin. ...
0
votes
1answer
246 views
Invalid option: gem check -t mail
I'm trying to run the unit tests on the mail gem, but I get the following. I've done this in accordance with the gem manual here http://docs.rubygems.org/read/chapter/10
> gem check -t mail
ERROR: ...
3
votes
1answer
1k views
Gem testing with Rspec
I have written a custom Ruby Gem to hook into our company's authentication and authorization system and am starting to develop the unit tests for the gem.
In our rails app, the Gem can be configured ...
2
votes
1answer
1k views
Install autotest lib not found error
I cannot get autotest to work. Rspec works fine.
Firstly, I cannot get the autotest/ Rspec command to work with the bundle exec command, so I modified the Gemfile to include the following code.
...
2
votes
2answers
1k views
Updating rspec gem has caused 'gem' command to become unstable/buggy. Help!
I have installed the latest rspec gem and now every 'gem' command, no matter what, throws this error:
egervari@egervari:~/Websites/training$ gem -v
Invalid gemspec in ...
3
votes
1answer
376 views
Rspec, test Gems
I've developed a gem which is to use inside a model by adding acts_as_gmappable and it's possible to pass options in the declaration.
Now that I want to write tests with Rspec, I'm stuck for all ...
0
votes
4answers
280 views
Rspec failure when it should be passing
When I run bundle exec rspec spec/ I have one of my tests fail that should be passing. Here's the error:
Failure/Error: @user = Factory(:user)
NoMethodError:
undefined method `Factory' ...
0
votes
1answer
166 views
Testing gems within a Rails App
I'm attempting to test that my service is calling Anemone.crawl correctly. I have the following code:
spider_service.rb
class SpiderService < BaseService
require 'anemone'
attr_accessor :url
...
0
votes
1answer
266 views
Error while installing rspec gem bignum too big to convert into `long'
I was recently trying to change the version of rspec I installed from -v 2.5.0 to 1.3.0 to work with rails 2.x. After uninstalling cucumber, rspec-rails, and rspec I went to reinstall and then ...
0
votes
2answers
1k views
RSpec + Autotest Error on Mac OS X
I'm trying to run the command 'bundle exec autotest' in Terminal. I can get RSpec working if I use 'bundle exec rspec spec/', but I can't get autotest (the first command) running. Unfortunately, I get ...
1
vote
2answers
568 views
transactional fixtures in gem development
Can't I use transactional fixtures in gem (not Rails) development?
I added this to my spec_helper.rb:
RSpec.configure do |config|
config.filter_run :focus => true
...
67
votes
3answers
11k views
Setup RSpec to test a gem (not Rails)
It is pretty easy with the added generator of rspec-rails to setup RSpec for testing a Rails application. But how about adding RSpec for testing a gem in development?
I am not using jeweler or such ...
0
votes
2answers
556 views
RVM seems to mix gems and binaries between ruby versions
I use RVM and have some legacy projects where I use Ruby 1.8.7, rails 2.3.x, rspec 1.3.0 and rspec-rails 1.3.2. But after installing Ruby 1.9.2 and some gems rvm is messing up the Gem paths for 1.9.2 ...
1
vote
1answer
612 views
Segmentation Fault in rvm'd Ruby on Mac when running RSpec
I was developing something at the uni, saved to my Dropbox intending to continue at home. This is the message that greeted me:
$ spec graph_spec.rb
...
11
votes
4answers
10k views
Why don't RSpec's methods, “get”, “post”, “put”, “delete” work in a controller spec in a gem (or outside Rails)?
I'm not new to Rails or Rspec, but I'm new to making gems. When I test my controllers, the REST methods "get", "post", "put", "delete" give me an undefined method error.
Below you'll find code, but ...
4
votes
1answer
1k views
What's a good tutorial for creating a gem with RSpec?
I've been searching around for ways to create a gem with RSpec, but haven't found descriptive tutorials.
I started out with Ryan Bates' Making a gem, but I'm looking for a tutorial that discusses ...
2
votes
1answer
1k views
Rspec - problems with switching from plugins to gems
When dropping the use of rspec and rspec-rails plugins and switching to the gem versions instead, is there anything extra I have to change in spec_helper.rb or something to make the specs in my app ...