You are here

public function YAMLExporterTest::testOutput0 in Loft Data Grids 7.2

File

vendor/aklump/loft_data_grids/tests/phpunit/YAMLExporterTest.php, line 22
Tests for the YAMLExporter class

Class

YAMLExporterTest

Namespace

AKlump\LoftDataGrids

Code

public function testOutput0() {
  $control = "-\n    'Order No.': 1181\n    'Customer Billing Country': US\n    'California Taxed Purchase Amount': 0\n";
  $subject = $this->exporter
    ->export(0);
  $this
    ->assertSame($control, $subject);
}