]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/api/cephfs-subvolume-group.service.spec.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / api / cephfs-subvolume-group.service.spec.ts
CommitLineData
aee94f69
TL
1import { TestBed } from '@angular/core/testing';
2
3import { configureTestBed } from '~/testing/unit-test-helper';
4import { CephfsSubvolumeGroupService } from './cephfs-subvolume-group.service';
5import { HttpClientTestingModule } from '@angular/common/http/testing';
6
7describe('CephfsSubvolumeGroupService', () => {
8 let service: CephfsSubvolumeGroupService;
9
10 configureTestBed({
11 imports: [HttpClientTestingModule],
12 providers: [CephfsSubvolumeGroupService]
13 });
14
15 beforeEach(() => {
16 TestBed.configureTestingModule({});
17 service = TestBed.inject(CephfsSubvolumeGroupService);
18 });
19
20 it('should be created', () => {
21 expect(service).toBeTruthy();
22 });
23});