@0xcert/wanchain-asset-ledger
Version:
Asset ledger module for asset management on the Wanchain blockchain.
14 lines (10 loc) • 333 B
text/typescript
import { Spec } from '@hayspec/spec';
import * as ledger from '..';
const spec = new Spec();
spec.test('exposes objects', (ctx) => {
ctx.true(!!ledger.AssetLedger);
ctx.true(!!ledger.GeneralAssetLedgerAbility);
ctx.true(!!ledger.SuperAssetLedgerAbility);
ctx.true(!!ledger.AssetLedgerCapability);
});
export default spec;