0
votes
1answer
10 views

How can I get my Rspec unit test to pretend that the output of another method is XYZ

Using Rspec, I am writing unit tests for @survey.description: class Survey < ActiveRecord::Base def description if self.question.try(:description).present? && ...
0
votes
1answer
15 views

Rspec — mocking a method in another class

I'm new to RSpec, so bear with me! Here is my code. Testfile: before(:all) do @package = Package.new("testing") @param_source = "cat #{root}/file/test.json" end "it should update the version ...
0
votes
1answer
36 views

Mocks and Stubs. I don't get the basics

I am in the process of freeing myself from FactoryGirl (at least in the lib folder). So, I start writing strange stuff like "mock" and "stub". Can somebody help a novice out? I have this module ...
1
vote
1answer
20 views

Rspec — need to stub File.open that gets called in another file

In my test I'm initializing a new class called Package with some parameters. In the initialization of this class, I open a file that is available on my remote boxes but not something that is commonly ...
1
vote
1answer
44 views

How do you mock a break statement in RSpec?

I am having an issue with a LocalJumpError being raised when the example reaches the break statement. Does anyone know how to stub out break, or if this is even the right approach? The Method: def ...
1
vote
1answer
44 views

Converting Rspec mocks to Mocha for testing active-model-serializers

I'm using Benedikt Diecke's post on custom rspec example groups to test active model serializers but having trouble converting this to use mocha instead of rspec mocks. ...
1
vote
2answers
27 views

How to test a mixed-in class method is being called with RSpec and Mocha?

I have a module: module MyModule def do_something # ... end end used by a class as follows: class MyCommand extend MyModule def self.execute # ... do_something end end How ...
0
votes
2answers
49 views

Mocking User Interface with RSpec Ruby

I've been looking on google for an answer but I can't seem to find the right answer. Basically I want to test out different User Interfaces(Console) in my engine. I was told to use Mock Classes, ...
0
votes
1answer
28 views

rspec mock not getting called on belongs_to association

I'm trying to test my controller in rails with RSpec, but it's not calling one of the mocks I made and I'm not sure why. my model has a user class, and a game class, and a player class, which belongs ...
0
votes
1answer
22 views

How can I mock a Non-DB-Model and let it return a given list on call

I have a CommentList class with a static method fetch. The problem is, that it is not an ActiveRecord Model, but it makes http calls to fetch data. class CommentList def self.fetch # http-foo ...
0
votes
2answers
58 views

How to mock Pusher with RSpec in Ruby?

Currently using Pusher and RSpec. Pusher.should_receive( :trigger ).with( 'message', { :data => '12345' }) This would work, except the call is Pusher[ 'channel-id' ].trigger... How to mock this ...
2
votes
1answer
26 views

Is it possible to use a standard assertion rather than a mock expectation here?

I'm working on a custom job class for Delayed::Job so that I can observe the jobs as they are being run and moving through their various lifecycle events. In this particular case, I'm interested in ...
1
vote
0answers
27 views

Mocking or Stubbing mtime for File::Stat

My object GETs a file over HTTP. It does so, using the If-Modified-Since header. If the files has not been modified since the time in the header a Not Modified response will be returned and the file ...
0
votes
1answer
96 views

How to mock any_instance in a scope with RSpec?

I'm trying to write a spec which expects a method to be called on all instances in a scope. Couldn't find a elegant way to do it. This is a simplified representation of my code: class MyClass < ...
4
votes
1answer
183 views

What is double method in rspec for?

It is stated in rspec doc that I should use double method in order to create test double. But I can see that it works perfectly ok even if I don't use double. Is there anything wrong with not using ...
0
votes
2answers
70 views

Rspec testing ordered retrieval from a scoped method of model using mocking and expectations

I'm a newb to rspec, mocking and stubbing. I'm slowly starting to appreciate and wrap my head around the concepts of isolated testing and mocking/stubbing in general. I have a basic question, which i ...
1
vote
1answer
55 views

How to experiment with rspec from within irb

For example, I want to say b = double("book") in irb and play with the result. In irb if I say require 'rspec' b = double("book") I get an error. Ideas?
2
votes
1answer
72 views

How to test a function which takes a block with rspec

I have a function, which accepts a block, opens a file, yields and returns: def start &block .....do some stuff File.open("filename", "w") do |f| f.write("something") ...
0
votes
1answer
96 views

Rspec testing instance method which require other methods return (stubbing?)

I want those already methods to be tested, but everything I try, doesn't seem to fit with best practices nor do it work. May be somebody can support me with this? CODE To be tested def ...
3
votes
3answers
184 views

How to write short, clean rspec tests for method with many model calls?

I'm having trouble coming up with some tests for a method I want to write. The method is going to take a hash of some data and create a bunch of associated models with it. The problem is, I'm ...
3
votes
1answer
69 views

How to use mocks correctly?

I have this class: class EnablePost def initialize(post_klass, id) raise "oops" if post_klass.blank? @post_klass = post_klass @id = id end def perform post = ...
1
vote
2answers
202 views

RSpec: check if any model has been saved

In my Rails application I've created a method that creates a model hierarchy basing on JSON data. I'd like to assure that the method does not save anything to the database. I know I can write test ...
0
votes
2answers
229 views

Mock TCPSocket with RSpec

I'm attempting to write tests around an application that makes heavy use of TCPSockets (an IRC bot to be specific). While writing my first class's tests, I had been skimping by with doing: #In the ...
3
votes
1answer
396 views

RSpec - mock (or stub) overriden mixin method

I have situaltion like this: module Something def my_method return :some_symbol end end class MyClass include Something def my_method if xxx? :other_symbol else ...
0
votes
2answers
43 views

How to make tests with find and date conditions?

I'm trying to develop some tests for a method which is responsible for retrieve some users created after some date. I don't know how to mock tests for it. The method is the following: def user_list ...
1
vote
1answer
200 views

Mock file input as file path on Rspec

I have a question on how to use rspec to mock a file input. I have a following code for the class, but not exactly know a why to mock a file input. filepath is /path/to/the/file I did my search on ...
0
votes
1answer
110 views

Integration testing or mocking with Resque enqueuing?

How would you test this class? Would you integrate it with Resque and check that the job gets put in the queue or would you mock it, and if you would mock it how would you avoid just duplicating the ...
0
votes
1answer
231 views

Stubbing with Faraday and Rspec

I have a model that looks like this: class Gist def self.create(options) post_response = Faraday.post do |request| request.url 'https://api.github.com/gists' ...
0
votes
2answers
66 views

Cannot get stub verification of should_receive to work when stubbing a method on a stub instance

I'm trying to stub the facebook graph api that is wrapped by Koala. My goal is to verify that the graph is initialized with the given access token, and the method "me" is called. My rspec code looks ...
1
vote
1answer
66 views

RSpec mocked object and (state) variables

I am using the ZMQ::Poller in a Ruby app and would like to write some rspec tests. Since the poller offers a register-Method to register a socket, which may later be accessed using readables, I need ...
0
votes
1answer
61 views

RSpec message expectations not being met but method is called

I have the following test: describe "Exporter#get_method" do before(:each) do exporter.should_receive(:get_method).at_least(:once).and_call_original end it "should get the next ...
3
votes
1answer
145 views

RSpec - How to mock a stored procedure

Consider the following stored procedure: CREATE OR REPLACE FUNCTION get_supported_locales() RETURNS TABLE( code character varying(10) ) AS ... And the following method that call's it: def ...
3
votes
1answer
88 views

Struct vs test double in ruby

What would the pros and cons be of using an rspec double over a struct? For example before :each do location = double "locatoin" location.stub(:id => 1) end vs before :each do location ...
1
vote
1answer
36 views

Rspec: Avoiding out of sync issues with message expectations

Message expectations allow you to check if the object under test is sending the right message, but not that the target object can actually respond to this call. On the other end of the spectrum, ...
1
vote
1answer
387 views

how to use rspec to mock a class method inside a module

Im trying to test a create method that has a call to an external API but I'm having trouble mocking the external API request. Heres my setup and what I've tried so far: class Update def ...
0
votes
2answers
83 views

How to mock Kernel.open or open-uri without calling Kernel explicitly?

How to mock this call in RSpec? require 'open-uri' class FileFoo < ActiveRecord::Base def download image_url open("tmp/#{file}", 'wb') do |file| file << open(image_url).read ...
1
vote
2answers
47 views

Stubbing method for one argument, call original for other

to an API call during the test,I want to stub the OpenURI-open-method to return a file which content I packed up in a constant. However, in the same parsing method, all other calls to OpenURI open ...
0
votes
1answer
65 views

Getting 2 returns instead of 1 in tests

I'm writing test using double/stub, and i want to return me a fake value, but instead i'm getting and fake value and real value. Here is my controller and spec files, model has nothing in it. Any ...
3
votes
1answer
158 views

rspec mock should_receive in custom matchers

I am trying to use RSpec mock and should_receive in custom matcher. I want to catch the error caused by the should_receive to return proper value from the matcher and cause it output my custom failure ...
1
vote
1answer
138 views

How to stub after_create callback save! in model?

I receive following error: Output: 1) LabelsController#create label is new creates a new label Failure/Error: post :create, attributes[:label], format: :json NoMethodError: undefined ...
9
votes
3answers
764 views

Adopting “Growing Object-Oriented Software” techniques to Ruby on Rails

I read Growing Object-Oriented Software, Guided by Tests by Steve Freeman and Nat Pryce and was impressed very much. I want to adopt the ideas of this book in my Rails projects using RSpec, though its ...
3
votes
2answers
106 views

How do I mock %x in a test?

I've got something like this : class Something def some_method %x{xyz} end end And in the spec : describe Something do describe "#some_method" do it "should execute xyz command in a ...
1
vote
2answers
285 views

Stub helper method for request spec in rails / rspec

I have a helper method called get_books_from_amazon that does an API call and returns an array of books. I can't figure out how to stub it out in my request specs. module BooksHelper def ...
0
votes
0answers
112 views

Ruby Mocking IO - issue with select

I have been learning Ruby, and have ran into a problem. I am building a game of battleships to learn the language. The game takes 2 input and 2 output streams into the constructor (allowing two ...
0
votes
1answer
248 views

Falling back to original method in rspec-mocks

Is it possible to tell RSpec::Mocks to stub a method for a set of values, otherwise fallback to the original method? For example: File.stub(:exist?).with(/txt/).and_return(true) File.exist? 'log.txt' ...
0
votes
1answer
187 views

RR Mock method called, but spec still fails

Stack: Rails 3.0.7, Mongoid 2.2.5, RSpec 2.11.0, RR 1.0.4 I have a Subscription model that looks like this: class Subscription include Mongoid::Document embeds_many :addons after_save ...
0
votes
2answers
250 views

How do I stub out a current user's attributes in a view spec

I have a view spec where I'm testing conditional output. How do I get the spec to return the user I've mocked out? View file: .content - if @current_user.is_welcome == true Welcome to the site ...
0
votes
1answer
152 views

rspec: “no such file to load — rspec/mocks”

I'm trying to run a test on some very simple Ruby. I have ruby and rails installed on my linux machine. I also have rspec installed. My gem list is: LOCAL GEMS actionmailer (3.2.8) actionpack ...
0
votes
1answer
695 views

Webmock not registering my request stubs correctly

I am registering a request stub as follows: url = "http://www.example.com/1" stub_request(:get, url). with(body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project>\n ...
1
vote
1answer
617 views

RSpec: stub method call for external object inside method

I'm attempting to stub the behavior of a method within a method: class A def method_one(an_argument) begin external_obj = ExternalThing.new result = external_obj.ext_method(an_argument) ...

1 2 3