spec/cmds/out_spec.rb in cmds-0.1.5 vs spec/cmds/out_spec.rb in cmds-0.2.0
- old
+ new
@@ -32,34 +32,34 @@
end
end # Cmds.out!
describe "Cmds#out" do
it "gets echo output" do
- expect( Cmds::Cmd.new("echo %s").out "hey there!" ).to eq "hey there!\n"
+ expect( Cmds.new("echo %s").out "hey there!" ).to eq "hey there!\n"
end
it "reads input" do
expect(
- Cmds::Cmd.new("ruby -e %{script}").out(script: "puts STDIN.read") {
+ Cmds.new("ruby -e %{script}").out(script: "puts STDIN.read") {
"hey there!"
}
).to eq "hey there!\n"
end
end # Cmds#out
describe "Cmds#out!" do
it "gets echo output" do
- expect( Cmds::Cmd.new("echo %s").out! "hey there!" ).to eq "hey there!\n"
+ expect( Cmds.new("echo %s").out! "hey there!" ).to eq "hey there!\n"
end
it "reads input" do
expect(
- Cmds::Cmd.new("ruby -e %{script}").out!(script: "puts STDIN.read") {
+ Cmds.new("ruby -e %{script}").out!(script: "puts STDIN.read") {
"hey there!"
}
).to eq "hey there!\n"
end
it "errors when the command fails" do
- expect { Cmds::Cmd.new("false").out! }.to raise_error SystemCallError
+ expect { Cmds.new("false").out! }.to raise_error SystemCallError
end
end # Cmds#out!