Skip to content

Commit

Permalink
Fix old ref to config file
Browse files Browse the repository at this point in the history
  • Loading branch information
mattboldt committed Oct 20, 2019
1 parent a590372 commit f41aaaa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
13 changes: 0 additions & 13 deletions spec/unit/config_spec.rb

This file was deleted.

13 changes: 13 additions & 0 deletions spec/unit/setup_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require 'guac/commands/setup'

RSpec.describe Guac::Commands::Setup do
xit "executes `setup` command successfully" do
output = StringIO.new
options = {}
command = Guac::Commands::Setup.new(options)

command.execute(output: output)

expect(output.string).to eq("OK\n")
end
end

0 comments on commit f41aaaa

Please sign in to comment.