0
votes
1answer
8 views
How can I use more than one set of fixtures per table in Rails?
I want to define alternative sets of fixtures per database table.
For example,
class BusinessSpec
describe "some aspect of businesses" do
fixtures :fixture_set_1
...
…
1
vote
3answers
154 views
Convert fixtures into Factory Girl in Rails
I'd like to migrate my fixtures to "Factory Girl" in Rails.
Is there any easy way to convert all yml files in a factories.rb file?
1
vote
2answers
54 views
Django db reset without loading fixtures
Is there an easy way to reset a django database (i.e. drop all data/tables, create new tables and create indexes) without loading fixture data afterwords? What I want to have is ju …
0
votes
3answers
764 views
Selenium: How do I use javascript to clear a value from a form field?
I'm using the selenium IDE and the Selenium-Fitnesse Bridge fixture and I'm trying to test that when I clear a default value out of a form field, my form displays an error message. …
2
votes
2answers
59 views
FixtureReplacement with Cucumber
Hi,
I am using Cucumber with Selenium, FixtureReplacement and DatabaseCleaner.
Funnily enough, my data I created with FixtureReplacement is not accessible from my tests.
I have …
0
votes
5answers
132 views
Rails unit testing doesn’t load fixtures
Hello together,
rake test:units fails in my current application, because the needed data of the fixtures is missing.
If I'm loading the fixtures manually via rake db:fixtures:loa …
0
votes
1answer
35 views
Specifying an empty or nil fixture in Rails
I have the ff. ActiveRecord which I use only for the ID it generates:
class SomeTable < ActiveRecord::Base
end
I thought that one could specify fixtures for it through:
one: …
0
votes
2answers
33 views
Rails fixtures seem to be adding extra unexpected data
Hello, all. I've got a dynamic fixture CSV file that's generating predictable data for a table in order for my unit tests to do their thing. It's working as expected and filling th …
9
votes
9answers
1k views
Preferred fixture replacement plugin in Rails?
There are a dozen Rails plugins whose goal is to replace fixtures in testing. Here are a few I can think of:
fixture replacement
factory girl
factories and workers
rails scenario …
1
vote
2answers
83 views
Django: Create fixtures without specifying a primary key?
One of the things that bugs me about Django fixtures is that you've got to specify every model's primary key. Is there any way to create fixtures without having to specify a primar …
1
vote
1answer
58 views
Fixture loading works with loaddata but fails silently in unit test in Django
I can load the fixture file in my django application by using loaddata:
manage.py loaddata palamut
The fixture palamut.yaml is in the directory palamut/fixtures/
I have a unit …
0
votes
1answer
1k views
Selenium Fitnesse Bridge: How do I store and echo a variable?
I'm using the Selenium Fitnesse Bridge Fixture in order to write tests in Fitnesse for Selenium. It's great because it covers ALL the functions that Selenium has. However, the prob …
0
votes
1answer
51 views
How can I load HABTM-with-foreign-key relationships in my fixtures ?
I have the following two models: School and User, and a HABTM relationship between them, with a join table.
In this join table, the foreign key refering to the User table is not …
0
votes
1answer
93 views
Django fixture not loading with loaddata.
I've created a json fixture, and put it in my myapp/fixtures/. I've added myapp/fixtures to settings.FIXTURE_DIRS.
Here's the output of my attempt to load the fixture:
jeff@jeff-l …
0
votes
2answers
47 views
Ruby on rails: create_fixtures memory problem…
Hello,
I have to create around 100k records.
Those records are in the csv file and are being loaded using create_fixtures function.
It's slow on my development machine but it com …
