14 lines
313 B
V
14 lines
313 B
V
module bizmodel
|
|
|
|
import os
|
|
import freeflowuniverse.herolib.web.docusaurus
|
|
|
|
const bizmodel_name = 'test'
|
|
const export_path = os.join_path(os.dir(@FILE), 'testdata')
|
|
|
|
pub fn test_export_report() ! {
|
|
model := getset(bizmodel_name)!
|
|
model.export_report(Report{
|
|
title: 'My Business Model'
|
|
}, path: export_path)!
|
|
} |