public function YAMLExporterTest::testOutput1 in Loft Data Grids 7.2
File
- vendor/
aklump/ loft_data_grids/ tests/ phpunit/ YAMLExporterTest.php, line 33 - Tests for the YAMLExporter class
Class
Namespace
AKlump\LoftDataGridsCode
public function testOutput1() {
$control = "-\n 'Order No.': '1182'\n 'Transaction Date': 11/7/13\n 'Customer Name': 'Hope, Roberta'\n";
$subject = $this->exporter
->export(1);
$this
->assertSame($control, $subject);
}