The project is in a healthy, maintained state
It is helper for work with tcm systems, used in QA
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

OnlyofficeTcmHelper

This gem is using by ONLYOFFICE QA team for getting data for adding results

For using, need to create TcmHelper object in spec, but before tests. You can do it by example:

tcm_helper = OnlyofficeTcmHelper::TcmHelper.new(product: 'Product',
                                                plan: 'Plan',
                                                suite: description)

Attributes is not necessary, but will be good to add this.

And use method parse from this object:

result = tcm_helper.parse(example)

example is a object of RSpec::Core::Example

result is a object with all necessary data for adding result to you tcm:

  • result.product_name - name of product

  • result.plan_name - name of plan

  • result.suite_name - name of suite

  • result.cases_name - name of suite

  • result.status - name of status. Can be :passed, :passed_2, :failed, :aborted, :pending, :lpv, :service_unavailable

  • result.comment - comment of result