[IPC Spec] Fix broken functional test

parent dfc021f0
...@@ -4,7 +4,7 @@ module Pod ...@@ -4,7 +4,7 @@ module Pod
class Repl < IPC class Repl < IPC
include ProjectDirectory include ProjectDirectory
END_OF_OUTPUT_SIGNAL = '\n\r'.freeze END_OF_OUTPUT_SIGNAL = "\n\r".freeze
self.summary = 'The repl listens to commands on standard input' self.summary = 'The repl listens to commands on standard input'
self.description = <<-DESC self.description = <<-DESC
......
...@@ -69,7 +69,7 @@ module Pod ...@@ -69,7 +69,7 @@ module Pod
out.should.match /version: '#{Pod::VERSION}'/ out.should.match /version: '#{Pod::VERSION}'/
end end
it 'converts forwards the commands to the other ipc subcommands prints the result to STDOUT' do it 'forwards the commands to the other ipc subcommands and prints the result to STDOUT' do
command = Command::IPC::Repl.new(CLAide::ARGV.new([])) command = Command::IPC::Repl.new(CLAide::ARGV.new([]))
command.execute_repl_command("podfile #{fixture('Podfile')}") command.execute_repl_command("podfile #{fixture('Podfile')}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment