summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/encode-uri.pipe.spec.ts
blob: a436740930d02d26be2323cfbbc55896550216e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { EncodeUriPipe } from './encode-uri.pipe';

describe('EncodeUriPipe', () => {
  it('create an instance', () => {
    const pipe = new EncodeUriPipe();
    expect(pipe).toBeTruthy();
  });

  it('should transforms the value', () => {
    const pipe = new EncodeUriPipe();
    expect(pipe.transform('rbd/name')).toBe('rbd%2Fname');
  });
});