]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
24f472c911cc03b6a7b59aaeee3d7e76fcb560f8
[ceph.git] /
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { RgwStorageClassListComponent } from './rgw-storage-class-list.component';
4 import { HttpClientTestingModule } from '@angular/common/http/testing';
5
6 describe('RgwStorageClassListComponent', () => {
7   let component: RgwStorageClassListComponent;
8   let fixture: ComponentFixture<RgwStorageClassListComponent>;
9
10   beforeEach(async () => {
11     await TestBed.configureTestingModule({
12       imports: [HttpClientTestingModule],
13       declarations: [RgwStorageClassListComponent]
14     }).compileComponents();
15
16     fixture = TestBed.createComponent(RgwStorageClassListComponent);
17     component = fixture.componentInstance;
18     fixture.detectChanges();
19   });
20
21   it('should create', () => {
22     expect(component).toBeTruthy();
23   });
24 });