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