Tagged Questions

4
votes
2answers
2k 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 ...
2
votes
1answer
358 views

Fixtures for Google App Engine

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 clean approach and ...
1
vote
1answer
338 views

JUnit Testing with Object Fixture

Hey guys I'm trying to write a JUnit test to test something but it's just not clicking. I'm supposed to design a jUnit tester that is testing a class but uses another class that implements the ...
0
votes
0answers
72 views

How to execute rspec code with selenium conditionally depening on whether or not a test fails?

I use selenium and rspec to test a webapplication. I use database_cleaner to delete data which gets created by running my tests. In order to start with a clean database that only contains my fixtures, ...
0
votes
1answer
173 views

How to stop further execution of Tests within a TestFixture if one of them fails in NUnit?

I want to stop further execution of Tests within a TestFixture if one of them fails in NUnit. Of course the common and advised practice is to make tests independent of each other. However, the case I ...
0
votes
1answer
91 views

How to pass data stored in table between test pages in fitnesse

In my fitnesse project i've got one table which stores authentication data to database. I'm using it on each site. Is it possible to have one site with that table and allow all other test sites use ...