Shoulda, developed by thoughtbot, provides a method for organizing tests. As described by its creators, "[shoulda] Makes tests easy on the fingers and the eyes"

learn more… | top users | synonyms

0
votes
0answers
21 views

Testing rails validates_uniqueness_of scoped to an array

I've got a model with a pretty specific validation for uniqueness. I don't want a duplicate record to exist for any one user, but a "duplicate" may exist between separate users. The model class ...
0
votes
0answers
13 views

Rewriting assert_bad_value for Shoulda 3

I've inherited a bunch of old (v2) Shoulda tests. The documentation on what was deprecated between v2 to v3 is quite limited, and I can't seem to find the recommended way to rewrite the ...
0
votes
0answers
30 views

RSpec Shoulda validates_presence_of nilClass

When I use Shoulda's validates_presence_of, it stumbles on a before_validation callback. before_validation :set_document, :set_product, :set_price I'm trying to get this spec to pass: it { ...
0
votes
1answer
19 views

Rails, shoulda and rspec, Column Not Null

I am not able to get my tests passing for where the field can be empty string but where it can't be null. I used this stackeroverflow post for a litte help But can't find much more to help me. In ...
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
0answers
15 views

Paperclip Shoulda Matchers for Miniteset

The Paperclip Documentation provides instruction for setting up Paperclip's Shoulda matchers for RSpec and Test::Unit. However when I tried to set them up for Minitest I wasn't successful (I followed ...
0
votes
1answer
42 views

shoulda matchers should validate_uniqueness_of failing with scope

i have 3 models, user, game, and player. there's basically a many to many relationship between users and games, with players as the join table, except players has other info so it has its own model. ...
1
vote
2answers
56 views

rails, rspec, shoulda validate_presence_of failed with setter called twice

In a simple rails app with a company model class Company < ActiveRecord::Base # Attributes attr_accessible :name validates_presence_of :name def name=(s) self[:name] = s.upcase ...
0
votes
1answer
44 views

Rspec/Rails and testing validates_uniquess_of with scope

Here is my test code: require 'spec_helper' describe Classroom, focus: true do let(:user) { build_stubbed(:user) } describe "associations" do it { should belong_to(:user) } end ...
1
vote
3answers
35 views

Validate_presence_of test passing when it shouldn't?

I just started using RSpec and Shoulda-matchers, and I think something is going wrong here. In my model, I have a member, displayname, that is validated like this. validates :displayname, :presence ...
1
vote
0answers
30 views

NoMethodError: Undefined method `failure_message` - Shoulda

I am trying to use Shoulda to test my user class as followed: user_test.rb require 'test_helper' include Devise::TestHelpers class UserTest < Test::Unit::TestCase should have_many(:holidays) ...
-1
votes
1answer
21 views

How to do function tests for TWITTER API

I am creating a web app for a project. I want to allow my users to post there blogs onto twitter using the twitter API. they will generate a blog inside my website and if they would like to share ...
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 ...
1
vote
1answer
36 views

Shoulda and RSpec's before

I try to set a instance variable in a subject before testing validity of model fields. I need to set this variable, because validation is conditional (it is used only for some type of users). So I ...
2
votes
1answer
146 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 ...
0
votes
0answers
34 views

rails counter cache and foreign key test

This is my favorite designer model favorite_designer.rb class FavoriteDesigner < ActiveRecord::Base belongs_to :user, :counter_cache => true belongs_to :designer, :class_name => "User", ...
2
votes
0answers
33 views

rails 3 + shoulda + validations based on callbacks

i am new to shoulda. many of my models have validations as below validates :sampling_method, :presence => true, :if => :type_of_resource validate :check_for_decimal_places, :if => ...
0
votes
1answer
20 views

rspec validation with unless

brief.rb # encoding: utf-8 class Brief < ActiveRecord::Base belongs_to :project validates_numericality_of :duration, :only_integer => true, :less_than_or_equal_to => 15, ...
0
votes
1answer
74 views

shoulda greater and less than syntax

brief.rb # encoding: utf-8 class Brief < ActiveRecord::Base belongs_to :project validate :can_only_be_edited_if_project_is_not_started validates_presence_of :project, :inverse_of => ...
0
votes
1answer
43 views

shoulda gem allow_value method

old_spec.rb it { should allow_value(:nil).for(:invoice_type) } it { should allow_value(:customer_invoice).for(:invoice_type) } it { should allow_value(:creative_invoice).for(:invoice_type) } it { ...
0
votes
0answers
24 views

rails spec_helper configuration

When I run test,I encounter this error. 3) Bill non-specific tests Failure/Error: it { should accept_nested_attributes_for(:bill_extras).allow_destroy(true) } NoMethodError: ...
0
votes
1answer
57 views

how to test rspec shoulda for custom validation in rails?

I have a Private methods in my model like the following: validate :record_uniq private def record_uniq if record_already_exists? errors.add(:base, "already exists") end end ...
2
votes
1answer
115 views

rails 2 + thoughtbot-shoulda

i m using thoughtbot-shoulda gem in a rails 2 application. the model is as class Zone < ActiveRecord::Base belongs_to :organization has_many :volunteer_shifts validates_presence_of ...
1
vote
1answer
65 views

Shoulda rspec matchers ensure_inclusion_of

I have a test using shoulda that is failing for reasons I don't understand. Any idea what the fix is for this? I hardcoded the array for testing purposes. All my other shoulda matcher based tests are ...
0
votes
1answer
222 views

Upgrading Shoulda gem leads to errors with RSpec and Ruby on Rails

After I upgraded my shoulda gem to 3.4.0, my tests would no longer run. Context: Ruby 1.9.3-p392 Rails 3.2.12 Rspec 2.13.0 Mac OS X 10.8.3 When I set up my Gemfile and run bundle exec rspec ...
0
votes
0answers
20 views

shoulda allow_destroy method with rspec

bill.rb class Bill < ActiveRecord::Base belongs_to :project has_many :bill_extras, :dependent => :destroy accepts_nested_attributes_for :bill_extras, :allow_destroy => true ...
2
votes
0answers
42 views

How to test mongoid model validations with message by shoulda?

I have a model with validations, like this: class Order include Mongoid::Document field :first_name, type: String field :last_name, type: String validates_presence_of :first_name, :message ...
1
vote
0answers
100 views

has_many validation on nested attribute for Rails

I've got the following two models: class Human < ActiveRecord::Base has_many :homes, inverse_of: :human, validate: true, autosave: true accepts_nested_attributes_for :homes, allow_destroy: true ...
0
votes
0answers
17 views

shoulda failing inclusion test for some reason

I have the following test: should ensure_inclusion_of(:role).in_array(User::ROLES.values) with the following validations: validates :role, inclusion: { in: ROLES.values } before_validation ...
0
votes
0answers
27 views

shoulda test value with dependency

I have the following: class Foo < ActiveRecord::Base validates_numericality_of :max, :only_integer => true, :greater_than => :min validates_numericality_of :min, :only_integer => ...
1
vote
0answers
47 views

RSpec & Shoulda one-liner description output

A one-liner in RSpec such as... it { should validate_presence_of(:title) } ...produces the descriptive output of: "should require title to be set" The line of code within the matcher for this ...
0
votes
1answer
17 views

When is a good time to test associations with Shoulda?

With RSpec and Shoulda you can: it { should belong_to(:product) } I am told specs should specify observed behavior. This spec also does seem like duplication of code that can be written in the ...
2
votes
1answer
270 views

minitest-rails-shoulda with minitest gives me undefined method `run_teardown_hooks'

Help please: I want to user shoulda with minitest. This is the exception I get: NoMethodError: undefined method `run_teardown_hooks' for #<#<Class:0x007fd42ed95490>:0x007fd42ed00c78> ...
0
votes
0answers
34 views

What ruby testing library uses (or has used) the class-level syntax `expect {}`?

I'm refurbishing some old tests, which appear to be Test::Unit with Shoulda. Some parts have a syntax expect {block}, but I can't find any references to expect in the current Shoulda code. expect ...
0
votes
0answers
22 views

Using VCR with TestUnit

I am beginning my road of understanding of TDD with Ruby Development and am building in tests for an API wrapper that I am writing. Here is my test: setup do @em = API::Setup.new('acct_id', ...
0
votes
1answer
71 views

Rails Has One Rspec Test tells me Unitialized Constant

I have a have one relationship between two models. The relationship works, the problem however is that when I write a Rspec test with shoulda matchers I get returned an error. Failure/Error: it { ...
1
vote
1answer
283 views

`should respond_with_content_type` and `should respond_with` fail because response is nil

In the following test, I'm expecting a visitor to my page who is not logged in to get '404' and for the content-type of the response to be html, which I've expressed like this: require 'spec_helper' ...
0
votes
1answer
122 views

Getting error: undefined method `greater_than_or_equal_to' for Shoulda::Matchers

Here is the spec I am trying to get to pass: context "when validating format of attributes" do it { should validate_numericality_of(:price).greater_than_or_equal_to(0.01) } end I have rspec and ...
2
votes
1answer
388 views

Shoulda/RSpec matchers - conditional validation

In my code I had the following validation with Shoulda matchers, which works fine: it { should validate_presence_of(:name) } In my model, I've added the condition to my validation: ...
1
vote
1answer
30 views

Why Shoulda executes same test twice

I'm trying to use Shoulda and context to avoid duplication on my tests. In the following test I would like to expect the following output. "dir created" "dir removed" but instead I've got "dir ...
0
votes
1answer
99 views

Running the same test multiple times with different setups

Does anyone know of a nice dry way to run the same group of tests in different contexts. Here is a ridiculous example of wanting to run the same tests with two different setups. I don't want to have ...
0
votes
4answers
277 views

shoulda factory girl error Couldn't find model without an ID

Good day, i get this error from ActiveRecord::RecordNotFound: Couldn't find User without an ID my model has_many :objects, class_name: 'OrderObject', dependent: :destroy belongs_to :user ...
0
votes
1answer
154 views

rspec factory girls with shoulda uniqueness test error

Good day, currently i'm struggling with this error. Failure/Error: FactoryGirl.create(:subscription) NoMethodError: undefined method `attribute_list' for "AdvtCategories":String i can't ...
1
vote
0answers
183 views

FactoryGirl + Shoulda NoMethodError: undefined method `featured='

I have the following test failing 2) Dvd when is featured Failure/Error: subject { Factory(:featured) } NoMethodError: undefined method `featured=' for #<Dvd:0x007f9cdb50e400> # ...
1
vote
1answer
104 views

Ensure_inclusion_of keeps passing when it should fail?

I'm using Shoulda and Rspec for testing. When I try this in my test spec it keeps passing when I haven't done the validations in the model: it { should ensure_inclusion_of(:private).in_array(%w[true ...
1
vote
2answers
189 views

Rspec & FactoryGirl: Is it really assigning the user id to my model?

Here are my Factories: spec/factories.rb FactoryGirl.define do factory :user do username 'user1' time_zone 'Eastern Time (US & Canada)' email 'user@example.com' ...
1
vote
1answer
860 views

Rspec should change count without lambda

I am trying to figure out another way of writing the should change count test (without lambda). I am using Rails 3. I am also utilizing the shoulda matcher gem Reason - All test cases are in the ...
1
vote
2answers
590 views

Shoulda belongs_to with class_name and foreign_key

I know you can easily test a belongs to relationship using Shoulda: describe Dog dog it { should belong_to(:owner) } end Is it possible to test a more complicated belongs_to relationship using ...
1
vote
1answer
98 views

Is this the correct DRY way to test user roles with RSpec & Shoulda?

I have a rails application using cancan, and there are several different roles that I am testing. I'm looking for the most DRY way to setup these tests across several controllers. This is a ...
5
votes
5answers
483 views

Using shoulda to refactor rspec tests on Rails models

After learning about shoulda-matchers by answering another StackOverflow question on attribute accessibility tests (and thinking they were pretty awesome), I decided to try refactoring the model tests ...

1 2 3 4 5