forked from cleveragents/cleveragents-core
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
*** Settings ***
|
|
Documentation Smoke tests for documentation build via nox
|
|
... Validates that the docs build completes successfully and
|
|
... key documentation files exist.
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Test Cases ***
|
|
Quality Automation Guide Exists
|
|
[Documentation] Verify the quality automation guide file exists
|
|
[Tags] docs quality
|
|
File Should Exist ${WORKSPACE}/docs/development/quality-automation.md
|
|
|
|
Testing Guide Exists
|
|
[Documentation] Verify the testing guide file exists
|
|
[Tags] docs testing
|
|
File Should Exist ${WORKSPACE}/docs/development/testing.md
|
|
|
|
CI CD Guide Exists
|
|
[Documentation] Verify the CI/CD guide file exists
|
|
[Tags] docs ci
|
|
File Should Exist ${WORKSPACE}/docs/development/ci-cd.md
|
|
|
|
README Links Quality Automation Guide
|
|
[Documentation] Verify README.md references the quality automation guide
|
|
[Tags] docs links
|
|
${content}= Get File ${WORKSPACE}/README.md
|
|
Should Contain ${content} quality-automation.md
|
|
|
|
CONTRIBUTING Links Quality Automation Guide
|
|
[Documentation] Verify CONTRIBUTING.md references the quality automation guide
|
|
[Tags] docs links
|
|
${content}= Get File ${WORKSPACE}/CONTRIBUTING.md
|
|
Should Contain ${content} quality-automation.md
|