Tagged Questions
0
votes
1answer
79 views
Error running tests for a rails engine
I'm building an application based on the social-stream gem, which is a Rails engine. I have a Rakefile. I've included the factory-girl gem in my Gemfile, but for some reason the rake tasks are failing ...
0
votes
1answer
215 views
Rails rake db:seed and FactoryGirl not getting along
Trying to use FactoryGirl to seed my development db with some data. Following this tutorial so my seeds.rb file looks like this:
require 'factory_girl'
...
2
votes
4answers
624 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
199 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 ...
3
votes
1answer
635 views
rails - asset pipeline - how to get newer version of jquery-ui included in the project?
I'm having a problem with the fullcalendar js which we use directly through the plugin (not the gem which is currently version incompatible anyway).
I'm upgrading rails from v3.2.6 to v3.2.8
...
0
votes
1answer
504 views
FactoryGirl error during Run Rake Task
I am having an issue with FactoryGirl when running Rake Tasks.
Here is my current setup on my Windows 7 laptop:
1) RubyMine 4.5
2) Rails 3.2.8
3) Ruby 1.9.3
4) PostgreSQL 9.1
5) rspec-rails 2.11.0
...
2
votes
1answer
1k views
Trait not registred: attribute name
Having trouble getting this done.
I am using seed.rb + factory_girl to populate database with rake db:seed.
(I know that fixtures exists, but I want to get this done this way, this is just an ...
2
votes
1answer
210 views
Factory Girl and lazy initialization while running db:migrate
I have a factory like that:
FactoryGirl.define do
factory :member_data,
:class => Member do
first_name 'fn_member'
last_name 'ln_member'
end
end
When I run db:migrate, ...
0
votes
1answer
124 views
Cucumber::Rake::Tasks not using ruby --1.9?
We are trying to use Rake to run Cucumber tests on our build server. Everything has been running fine for a few weeks, but last night we started seeing an error
C:\jruby-1.6.7\bin\jruby.exe --1.9 -e ...
2
votes
1answer
693 views
Using factory_girl within a rake task - getting uninitialized constant
I'm trying to use Factory Girl in a rake task like this:
require 'factory_girl'
require File.expand_path("spec/factories.rb")
namespace :users do
desc "Create sample users for use in development" ...
4
votes
1answer
1k views
Railstutorial: db:populate vs. factory girl
In the railstutorial, why does the author choose to use this (Listing 10.25):
http://ruby.railstutorial.org/chapters/updating-showing-and-deleting-users
namespace :db do
desc "Fill database with ...