Tagged Questions

0
votes
1answer
39 views

Fixtures for Google App Engine

Hello everyone. Are there any Python tools to create fixtures on Google App Engine? I tried Fixture(http://farmdev.com/projects/fixture/). It is the most awesome tool I have come across. I love the …
1
vote
3answers
184 views

How do I populate a table in rails from a fixture?

Quick summary: I have a Rails app that is a personal checklist / to-do list. Basically, you can log in and manage your to-do list. My Question: When a user creates a new account, I want to populate …
2
votes
2answers
440 views

How do you put a file in a fixture in Django?

I can easily fill the field of a FileField or ImageField in a Django fixture with a file name, but that file doesn't exist and when I try to test my application it fails because that file doesn't …
0
votes
2answers
73 views

Are there any .net equivalents to Rails fixtures?

I'm looking for a project/tool that will insert data into a database before a test and roll it back after a test has run. I know that ruby on rails has yaml fixtures, so I was hoping there is a …
1
vote
2answers
253 views

unit testing of dynamic fixtures

Is it possible to have a fixture change between test methods? If so, how can I do this? My syntax for this problem : In the cakephp framework i am building tests for a behavior that is configured …