You've already forked gnatdashboard
mirror of
https://github.com/AdaCore/gnatdashboard.git
synced 2026-02-12 12:30:42 -08:00
11 lines
313 B
Python
11 lines
313 B
Python
"""Check the integrity of the GNAThub Python module."""
|
|
|
|
import GNAThub
|
|
from support.asserts import assertEqual
|
|
|
|
# GNAThub.Project.target (not overridden)
|
|
assertEqual(GNAThub.Project.target(), 'arm-eabi')
|
|
|
|
# GNAThub.Project.runtime (not overridden)
|
|
assertEqual(GNAThub.Project.runtime(), 'ravenscar-sfp-stm32f4')
|