]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-501/rgw-501.component.spec.ts
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-501 / rgw-501.component.spec.ts
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { RouterTestingModule } from '@angular/router/testing';
4
5 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
6 import { SharedModule } from '../../../shared/shared.module';
7 import { Rgw501Component } from './rgw-501.component';
8
9 describe('Rgw501Component', () => {
10 let component: Rgw501Component;
11 let fixture: ComponentFixture<Rgw501Component>;
12
13 configureTestBed({
14 declarations: [Rgw501Component],
15 imports: [HttpClientTestingModule, RouterTestingModule, SharedModule],
16 providers: i18nProviders
17 });
18
19 beforeEach(() => {
20 fixture = TestBed.createComponent(Rgw501Component);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
23 });
24
25 it('should create', () => {
26 expect(component).toBeTruthy();
27 });
28 });