File: cli_spec.rb

package info (click to toggle)
r10k 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,228 kB
  • sloc: ruby: 18,180; makefile: 10; sh: 1
file content (9 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
require 'spec_helper'

RSpec.describe 'basic cli sanity check' do
  it 'can load the R10K::CLI namespace' do
    expect {
      require 'r10k/cli'
    }.not_to raise_exception
  end
end