public function testLoadBothCustomAndNimble()
 {
     Nimble::plugins('test_plugin');
     $this->Nimble->__construct();
     $this->Nimble->dispatch(true);
     $test_class = new TestPlugin();
     $this->assertEquals($test_class->foo(), 'foo');
     $this->assertEquals(1, 1);
 }