Tagged Questions
0
votes
1answer
13 views
Unit Testing Approach for an Algorithm in Rails model
I am yet to jump into the TDD/BDD group. Trying to make the mental switch. For now I have been writing the business logic before my tests.
In one of my Rails model, I have a complex algorithm ...
0
votes
1answer
33 views
Controller testing Show page with Rspec, it gives an error nil & and render empty page
I'm new to TDD on Rails, and I'm trying to test videos_controller with the book "Everyday Rails Testing with Rails" for simple show page but it gives me error 'nil' & render empty, as follows. But ...
0
votes
0answers
24 views
FactoryGirl and validations on embeds_many in Mongoid
I have a complex model relationship hierarchy setup, Here are the relevant parts ( Channel and ChannelTagWeight model) as:
class Channel
include Mongoid::Document
embeds_many ...
0
votes
1answer
23 views
Dynamically generate factory attributes
I want to do following:
classes = ["WelcomeMailing", "NoticeMailing", "FeedbackMailing"] #......
FactoryGirl.define do
classes.each do |tclass|
cl_attributes = ["body", "subject", ...
0
votes
3answers
40 views
Cleanly Setting up multiple models in FactoryGirl for a test/spec
I have been picking up on Rails best practices and learning to write good tests for my rails application.
I am using rspec + FactoryGirl to test at the moment.
For a while I was writing basic model ...
2
votes
1answer
111 views
Why is this test result backwards?
I'm writing my first tests using Test:Unit and Shoulda, so this may be a simple misunderstanding on my part, but given a Pages model that contains no validation, and a test:
#test/unit/page_test.rb ...
0
votes
1answer
50 views
Unit testing a model method in Rails using MiniTest - How to use stubs or mock objects?
I am learning on Rails 3 and I started to to unit testing. After some research I decided to use MiniTest for unit testing.
I have the following model
class Participant < ActiveRecord::Base
...
...
0
votes
0answers
26 views
Should we always assign nil to instance variables in the teardown method?
I read this (late 2007) blog post and I'm wondering whether we should indeed always assign nil to instance variables in the teardown method.
I'm using Ruby 1.9.3, Rails 3.2.13, and minitest-rails, ...
0
votes
1answer
44 views
How to test a skinny controller without retesting the fat model?
Before I start, I'm using rails with rspec, shoulda-matchers, and factorygirl to ease testing, so if those libraries contain something helpful to solve the problem below, please let me know.
I was ...
0
votes
1answer
31 views
Rails generates wrong SQL on test only
I have this class:
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation
attr_accessor :password
before_save :encrypt_password
...
0
votes
5answers
92 views
In Ruby unit tests, how to assert that a string contains certain substring?
In ruby unit test, how do I assert that a string contains a substring? e.g. something like
assert_contains string_to_test, substring_to_verify
0
votes
1answer
73 views
Am I going overboard with rails testing
I have a member of my model that has these validations
validates :status, :presence => true, :numericality => {:only_integer => true}
In order to test that, my plan was to make a fixture ...
0
votes
0answers
32 views
Shoulda and testing validation of minimum length of relations
I have such code in my model:
has_and_belongs_to_many :items, :uniq => true
validates :items, :length => { :minimum => 1 }
attr_accessible :items_ids
So the problem is, I can't test it ...
2
votes
1answer
79 views
Rails / RSpec Why can't I use the shortened “its(:attribute)” with Rails model associations?
In rspec-rails, I have an activerecord model called "Customer". Customer has_many "interactions". I recently spent quite a bit of time debugging something. I got it to work, but the answer I came up ...
0
votes
2answers
44 views
Need help understanding why unit test for method is not working
I'm trying hard to cover all of my model's methods, associations and validation in my unit tests and so far it's going great. I've subscribed to TreeHouse and watched Ruby Foundations - Testing ...
2
votes
1answer
107 views
Testing a concern / module that uses ActiveRecord
SCENARIO
I have extracted a concern called Taggable. It's a module that allows any model to support tagging. I have included this concern/module into models like 'User', 'Location', 'Places', ...
0
votes
1answer
28 views
testing tools for ruby on rails [unit testing that is testing each methods]
I have a live data and i have to test on live data in ruby on rails. Please suggest me best testing tools to test live data. And i am using sunspot solr to search data and how can i test the resultant ...
0
votes
0answers
20 views
Rails functional test for curl examples
How to write rails functional test for curl example curl -k -u user@abc.com \ https://example.com/
I tried a lot but couldn't come up with good solution.
Thanks in advance.
-1
votes
1answer
41 views
Rails testing failure [closed]
I am having and issue with one of my rails tests. Below is the test that is failing but shout not be.
setup do
@answer = Answer.new(:title => 'Title', :body => 'Body', :email => ...
0
votes
0answers
42 views
Unit testing for admin section in rails 3.2
I am trying to write unit tests/rspecs for admin section in my application. I am running according to the coverage report generated using simplecov. How would I write the tests for admin/user.rb file ...
0
votes
1answer
41 views
how to test if a object was created with rspec?
How to test a method that creates 10 objects User with rspec, but returns a boolean value?
And if it was only one user? There is a cleaner way to test?
0
votes
1answer
81 views
Assign variable in rspec controller test
I have an rspec test in which I need to test my controller.
it "renders the #show view" do
get :show, id: FactoryGirl.create(:quiz)
@facebook_profile = FactoryGirl.create(:facebook_profile)
...
0
votes
6answers
121 views
Should I use TDD and BDD if my project is changing fast? [closed]
I have my own little project I am creating using RoR, I plan it to have small-medium load.
With no doubt I started with BDD and TDD (Cucumber and RSpec to be exact, but I am also experienced with ...
0
votes
2answers
118 views
How to test controller with Rspec - #show action
I have a Batch model that belongs_to a User. User should only see their own Batches instances.
For the index action, here is what I did:
Batch#index
context "GET index" do
it "should get only ...
0
votes
0answers
31 views
Testing of methods which are written in seeds.rb file
I have written a ruby class with some methods in seeds.rb file
which is responsible for uploading content in different tables in database .
Now I have written some tests for methods in that class ..
...
0
votes
2answers
19 views
Can't test user name validation with TestUnit
I have the following validation in my User model:
validates :name, :format => {
:with => /^[a-zA-Z]+$/,
:message => 'Only letters allowed.'
}
And here is my test:
test ...
1
vote
1answer
72 views
Unit tests fail after migrating from rails 2.0.1 to 2.3.17
After migration from Rails 2.0.1 to 2.3.17 Unit Tests are not working. For each of them I am getting the same error:
"NoMethodError: undefined method `assert_valid_keys' for
false:FalseClass".
...
2
votes
0answers
65 views
Isolated testing of a presenter nested under a model namespace
I have the following object structure in a Rails app:
# app/models/model_a/model_b/model_c.rb
class ModelA < ActiveRecord::Base
class ModelB < ActiveRecord::Base
class ModelC < ...
0
votes
0answers
92 views
Rails: Why do my FactoryGirl fixtures successfully create in the rails console but fail during rake test?
Assertions in my tests are erring, but the commands that they're erring on are running successfully in the rails console.
I am using Test::Unit tests with capybara, mocha, factory_girl_rails, ...
0
votes
1answer
45 views
Failing first name and last name regex test
I am having quite a weird error in my rails' unit test.
I have the following test which fails for some reason:
should_not allow_value('@!>::<>').for(:first_name)
and the following ...
0
votes
0answers
61 views
Rails Unit Test Seemingly not Using Devise's “confirm!” Properly
Context: New to Rails
I'm using the Devise gem. I have a test pasted below and as I toy with this unit test I get something odd illustrated in doing the following:
@user refers to an empty user ...
1
vote
1answer
70 views
Why does Ruby run only some tests and not others?
I'm using this command to run some tests...
bundle exec ruby -Itest test/functional/*.rb
In my test/functional dir I have two files...
file_sets_controller_test.rb
user_sessions_controller_test.rb
...
0
votes
1answer
34 views
Rails 3 'test the truth' unit test failing after migrations mess-up
Finished tests in 0.074964s, 13.3398 tests/s, 0.0000 assertions/s.
1) Error:
test_the_truth(UserTest):
ActiveRecord::StatementInvalid: Mysql2::Error: Unknown column 'user_id' in 'field list': ...
0
votes
1answer
85 views
Is there a point in using Unit Test, Rspec, Cucumber and Capybara?
I am beginning at Ruby and i read about different test methods/frameworks: unit test (MiniTest::unit now with the latest Ruby version), Rspec, Cucumber and Capybara. But I don't fully grasp what's the ...
-2
votes
1answer
61 views
How to test these ActiveRecord models? [closed]
I'm trying to learn to write tests in Ruby (following the testing culture the language has). However, I'm quite confused and that's why I'm looking for an example here.
Here is my model user.rb:
...
3
votes
2answers
127 views
How to stub error raising using Rspec in Rails?
I'm new to Rails and Rspec and I'm using Rspec to test this controller method which includes exception handling:
def search_movies_director
@current_movie = Movie.find(params[:id])
begin
...
0
votes
1answer
41 views
Unit test fails (custom validate method)
Here is my model validation
validate :validate_mark_cheat
def validate_mark_cheat
if (self.student_from_id == self.student_to_id)
errors.add(:student_from_id, "a mark can't be self-asign")
...
2
votes
1answer
67 views
Wrong naming convention?
I've never used Unit Test before but only Rspec. So maybe here's some silly mistake.
I have CountriesController:
class CountriesController < ApplicationController
def create
@country = ...
1
vote
1answer
233 views
How to make Rubymine working with minitest framework
Can't configure Rubymine to work with minitest normally. All the time it throws me exceptions
Unable to attach test reporter to test framework or test framework quit unexpectedly
Also, I can't ...
0
votes
0answers
58 views
How to write tests to validate uniqueness and presence of has_many :through entries
I'm still a bit unexperienced in writing tests and are hoping you could point me into the right direction with the following problem:
I have the following 3 model classes with a has_many :through ...
1
vote
1answer
79 views
How to test ActiveRecord witout Rails?
I have a project in which I use ActiveRecord to store information in a sqlite db file. I'm not using Rails and AR seems to do the job perfectly. My question is how exactly to test my classes witout ...
0
votes
0answers
81 views
unit test do not run properly in rubymine (minitest framework)
I'm quite a new fish in RoR world. Currently I implementing a project using stack RoR + MongoDB (via Mongoid). Using Rubymine and creating tests via minitest framework.
The problem is when i'm ...
0
votes
0answers
37 views
Ruby MySQL intermittent error when dropping a database
I have a Rails unit test as so:
test 'should create database' do
begin
model = Model.new
sql = "CREATE DATABASE `TestDB`;USE `TestDB`;CREATE TABLE `TestDB`.`some_table`..." #Real SQL ...
3
votes
2answers
93 views
rspec expects doesn't do what I expect
So I have two specs which I thought are testing the same thing yet one fails while the other one passes. I'm working on an app which has a recurring schedule. If a user creates an trip that recurs it ...
1
vote
1answer
45 views
rails 3 unit test not running
The following code exists in test/unit/this_stupid_test.rb
require 'test/unit'
class ThisStupidTest < Test::Unit::TestCase
def better_be_true
assert true
end
end
When I run rake ...
-3
votes
3answers
62 views
change your environment while running your tests cases
I have to change my rails environment while running my tests cases.
if Rails.env.production?
# Do something
else
# Do something else
end
How do i change my rails environment in mid of tests ...
0
votes
1answer
53 views
RSpec Tests failing with Citier Gem - class table inheritance
I have set up the following models for a contacts directory
class Contact < ActiveRecord::Base
acts_as_citier
end
class Company < Contact
acts_as_citier
end
class Operator < Company
...
0
votes
1answer
129 views
Testing rails STI subclasses with rspec
Given a class that inherits from ActiveRecord::Base, lets call it Task, I have two subclasses that specialize some aspects of a task, Activity and Training, using standard Rails single table ...
1
vote
1answer
78 views
Rails unit test fixtures using environment variables throw MySQL error
Take for example the following test fixture:
fixture_1:
name: MyString
username: <%= Rails.configuration.database_configuration['test']['username'] %>
Throws the following error when ...
0
votes
0answers
33 views
Continuous error in Rails unit test not reproducable in dev
I have a method which returns a database connection (to a third-party DB, not my main ActiveRecord connection).
def db_connection
@database = Foo.establish_connection(
:adapter => ...



