/**
  * Test month choices
  *
  * @covers CustomizeSnapshots\Customize_Snapshot_Manager::get_month_choices()
  */
 public function test_get_month_choices()
 {
     $data = $this->manager->get_month_choices();
     $this->assertArrayHasKey('month_choices', $data);
     $this->assertCount(12, $data['month_choices']);
 }