Sha256: 98bd4ff8a3fed584ea8ae466bfbc62b96dc2866de4586cef25bba7b26fad1a5a
Contents?: true
Size: 649 Bytes
Versions: 5
Compression:
Stored size: 649 Bytes
Contents
# frozen_string_literal: true RSpec.describe :run_command do link :run_command, from: :ree_spec_cli it { project_path = File.expand_path( File.join(__dir__, "../../../../../../../ree/spec/sample_project") ) ARGV.clear ARGV << "run" ARGV << "accounts" ARGV << "--project_path" ARGV << project_path run_command() } it { project_path = File.expand_path( File.join(__dir__, "../../../../../../../ree/spec/sample_project") ) ARGV.clear ARGV << "run" ARGV << "accounts" ARGV << "build_user" ARGV << "--project_path" ARGV << project_path run_command() } end
Version data entries
5 entries across 5 versions & 1 rubygems