Sha256: 5fac89c2c16c1864502598558ab573e13668f5b8c87e390308bd7bd50b1edefd
Contents?: true
Size: 892 Bytes
Versions: 6
Compression:
Stored size: 892 Bytes
Contents
require "spec_helper" RSpec.describe <%= configuration.project_namespaced_class %>::CLI::Shell do using Refinements::Pathname using Infusible::Stub subject(:shell) { described_class.new } include_context "with application dependencies" before { Sod::Import.stub kernel:, logger: } after { Sod::Import.unstub :kernel, :logger } describe "#call" do it "prints configuration usage" do shell.call %w[config] expect(kernel).to have_received(:puts).with(/Manage configuration.+/m) end it "prints version" do shell.call %w[--version] expect(kernel).to have_received(:puts).with(/<%= configuration.project_label.gsub(" ", "\\s") %>\s\d+\.\d+\.\d+/) end it "prints help" do shell.call %w[--help] expect(kernel).to have_received(:puts).with(/<%= configuration.project_label.gsub(" ", "\\s") %>.+USAGE.+/m) end end end
Version data entries
6 entries across 6 versions & 1 rubygems