Merge pull request #7126 from andrewandante/patch-1

FIX remove info div to fix formatting
This commit is contained in:
Daniel Hensby 2017-07-04 13:46:18 +01:00 committed by GitHub
commit c472957bd2

View File

@ -9,7 +9,6 @@ SilverStripe starts with a fresh database containing no records. `Fixtures` prov
to load into the database. The [api:SapphireTest] class takes care of populating a test database with data from
fixtures - all we have to do is define them.
<div class="info" markdown='1'>
To include your fixture file in your tests, you should define it as your `$fixture_file`:
@ -34,15 +33,13 @@ You can also use an array of fixture files, if you want to use parts of multiple
class MyNewTest extends SapphireTest {
protected static $fixture_file = [
protected static $fixture_file = array(
'fixtures.yml',
'otherfixtures.yml'
];
);
}
</div>
Typically, you'd have a separate fixture file for each class you are testing - although overlap between tests is common.
Fixtures are defined in `YAML`. `YAML` is a markup language which is deliberately simple and easy to read, so it is