/**
  * Assert that the json columns show up when configured to do so
  */
 public function testDisableHiddenJsonColumns()
 {
     // Mock the model with data
     $mock = new MockJsonDialectModel();
     $mock->setJsonColumns(['testColumn']);
     $mock->setAttribute('testColumn', json_encode(['foo' => 'bar']));
     $mock->showJsonColumns(true);
     // Execute the insepect call
     $mock->inspectJsonColumns();
     // Assert that the testColumn shows up
     $this->assertArrayHasKey('testColumn', $mock->toArray());
 }