MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / test_qbasic_extensions

Function test_qbasic_extensions

tests/extraction_suite/qbasic.rs:266–275  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

264
265#[test]
266fn test_qbasic_extensions() {
267 let extractor = QBasicExtractor;
268 let exts = extractor.extensions();
269 assert!(exts.contains(&"qb"), "extensions should contain 'qb'");
270 // Should NOT contain 'bas' to avoid conflict with msbasic2
271 assert!(
272 !exts.contains(&"bas"),
273 "extensions should NOT contain 'bas'"
274 );
275}
276
277#[test]
278fn test_qbasic_language_name() {

Callers

nothing calls this directly

Calls 1

extensionsMethod · 0.45

Tested by

no test coverage detected