Sha256: eade7cc70b2333e8906ad3830a03cd01149c469e6f88bcb349ae85fecb8b6108

Contents?: true

Size: 523 Bytes

Versions: 1

Compression:

Stored size: 523 Bytes

Contents

require 'thor'
require_relative 'generator/project'

module TestRailIntegration
  class CLI < Thor
    desc "perform", "Creates project for interaction with TestRail"

    def perform
      TestRailIntegration::TestRail::Generators::Project.copy_file('run_test_run.rb')
      TestRailIntegration::TestRail::Generators::Project.copy_file("test_rail_data.yml", "config/data/")
    end

    desc "check_test_run_and_update", "Check test run statuses and update"

    def check_test_run_and_update
      check
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
test_rail_integration-0.0.7.7 lib/test_rail_integration/cli.rb