Top "Fixture" questions

Fixtures are scopes used for running tests which isolate each test from global namespace pollution and side-effects from previous tests in order to avoid false positives and false negatives

How can I load fixtures from functional test in Symfony 2

My DoctrineFixturesBundle is installed and I can load fixture trough the command-line but , how can I load fixtures from my …

symfony doctrine functional-testing fixture
How do I escape the ERB tag in ERB

I have a simple fixture.yml file: label: body: "<%= variable %>" The issue is that the ERB code is …

ruby-on-rails unit-testing erb fixture
How to load sql fixture in Django for User model?

Does anyone knows how to load initial data for auth.User using sql fixtures? For my models, I just got …

sql django fixtures fixture
Django - Foreign Keys in Fixtures

I have a fixture of "User" objects (just the default Django auth ones), and am trying to create a fixture …

django fixture
Any way to pass parameters into pytest fixture?

I am not talking about the Parameterizing a fixture feature that allows a fixture to be run multiple times for …

python pytest fixture
pytest fixtures Redefining name from outer scope [pylint]

I'm learning pytest and I lint my code with pylint. But pylint still complaints about: W0621: Redefining name %r from …

python pytest pylint fixture