Sha256: 85571e556b4a9030c231b8f387772a9ca05594720e2df5cc9256b92d51bd7329
Contents?: true
Size: 560 Bytes
Versions: 88
Compression:
Stored size: 560 Bytes
Contents
require 'spec_helper' describe Softcover::Commands::Deployment do describe "default commands" do subject { Softcover::Commands::Deployment.default_commands } it { should match /softcover build:all/ } it { should match /softcover build:preview/ } it { should match /softcover publish/ } end describe "commands helper" do let(:lines) { ['foo', ' # bar', 'baz'] } subject { Softcover::Commands::Deployment.commands(lines) } it { should match /foo/ } it { should_not match /bar/ } it { should match /baz/ } end end
Version data entries
88 entries across 88 versions & 2 rubygems