Sha256: d5dd23e6a4ea8c5681bf930fc69a321f2b28d2a8d98379d45c00ae20eaa207d1
Contents?: true
Size: 892 Bytes
Versions: 27
Compression:
Stored size: 892 Bytes
Contents
import { testSelectorsSnapshotWithFixtures } from '@theforeman/test'; import { tagInfo, hasRemediations, getTitle, getSeverity, getSummary, getTags, getExternals, getRemediations, } from '../helpers'; import { reportEntry } from './PreupgradeReportEntry.fixtures'; const fixtures = { 'should return tag info': () => tagInfo(reportEntry.tags), 'should detect if has remediations': () => hasRemediations(reportEntry), 'should return title': () => getTitle(reportEntry), 'should return severity': () => getSeverity(reportEntry), 'should return summary': () => getSummary(reportEntry), 'should return tags': () => getTags(reportEntry), 'should return externals': () => getExternals(reportEntry), 'should return remediations': () => getRemediations(reportEntry), }; describe('PreupgradeReportList/helpers', () => testSelectorsSnapshotWithFixtures(fixtures));
Version data entries
27 entries across 27 versions & 1 rubygems