Tagged Questions

12
votes
1answer
1k views

How do I escape ERB code in fixtures?

I have a simple fixture.yml label: body: "<%= variable %>" The issue is that the erb code is parsed as part of loading the fixture, but I actually want to body to be "<%= variable %>" ...
2
votes
3answers
166 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
1answer
183 views

Yii: How is this fixture being referenced?

I'm following along in the Yii book and am on CH5 (page 101). In our unit tests, it has us define an array that specifies which fixture(s) to use: class ProjectTest extends CDbTestCase { } public ...
1
vote
2answers
471 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 ...
0
votes
0answers
57 views

C++ GoogleTest parametrized fixture produces warning C4018 with Visual Studio

everyone! I'm using Visual Studio 2010, and I'm getting C4018 warning when compiling one of my parametrized fixture tests. I'm not getting this error anywhere else, so I'm a bit puzzled by this. I ...
0
votes
2answers
318 views

why python nose unittest teardown fixture failed

I'm using nose test framework. When running a test module, the teardown function defined in it failed. the error raised says the fixture is locked by another process. here is my test module, ...