13 lines
300 B
Python
13 lines
300 B
Python
"""Tests for export functionality."""
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
from shellhist.core import HistoryEntry, HistoryStore
|
|
from shellhist.core.export import (
|
|
generate_alias,
|
|
generate_alias_name,
|
|
generate_script,
|
|
generate_script_name,
|
|
)
|
|
from shellhist.core.patterns import CommandPattern |