mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Pilot work Signed-off-by: Parthvi Vala <pvala@redhat.com> * Add more tests * CompareDocOutput returns strings missing from cmdout and file * Finish automating docs for odo init command reference Signed-off-by: Parthvi Vala <pvala@redhat.com> * Cleanup Signed-off-by: Parthvi Vala <pvala@redhat.com> * Add make target for doc automation tests; create a separate folder for doc automation tests; add documentation for helper functions Signed-off-by: Parthvi Vala <pvala@redhat.com> * Attempt at fixing validation test Signed-off-by: Parthvi Vala <pvala@redhat.com> * Fix validation failures * Rename ReplaceTimeInString to ReplaceAllTimeInString Signed-off-by: Parthvi Vala <pvala@redhat.com> * Replace all time strings with a static value for both cmd and mdx output Signed-off-by: Parthvi Vala <pvala@redhat.com> * Add test suite for command reference tests Signed-off-by: Parthvi Vala <pvala@redhat.com> * Fix failing test and skip empty directory interactive test; add comment for tests with specific check Signed-off-by: Parthvi Vala <pvala@redhat.com> * Fix make target Signed-off-by: Parthvi Vala <pvala@redhat.com> * StripSpinner relies on statement to decide if it should strip the line or let it be Signed-off-by: Parthvi Vala <pvala@redhat.com> * Add check for unicode spinner frames just in case it is present; it is flaky Signed-off-by: Parthvi Vala <pvala@redhat.com> * Make interactive tests work * Make it pretty * Update odo version Signed-off-by: Parthvi Vala <pvala@redhat.com>
12 lines
218 B
Go
12 lines
218 B
Go
package docautomation
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/redhat-developer/odo/tests/helper"
|
|
)
|
|
|
|
func TestDocCommandReferenceAutomation(t *testing.T) {
|
|
helper.RunTestSpecs(t, "Doc Command Reference Automation Suite")
|
|
}
|