spec/cucumber_spec.rb in cuesmash-0.4.0 vs spec/cucumber_spec.rb in cuesmash-0.4.1

- old
+ new

@@ -1,105 +1,82 @@ require 'spec_helper' describe Cuesmash::Cucumber do - before(:each) do Cuesmash::Cucumber.any_instance.stub(:puts) end - describe "when running the tests" do - - before(:each) do - wait = double - @value = double - wait.stub(:value){@value} - wait.stub(:join) - Open3.stub(:popen3).and_yield(nil, nil, nil, wait) - + describe 'when generating the command' do + it 'should not add the ios version if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - @cucumber.stub(:command) - end - - it "should complete if all is well" do - @value.stub(:exitstatus){0} - @cucumber.should_receive(:completed) - @cucumber.test - end - end - - describe "when generating the command" do - - it "should not add the ios version if missing" do - @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) @cucumber.stub(:tag_arguments) - expect(@cucumber.instance_eval{command}).not_to match(/DEVICE_TARGET/) + expect(@cucumber.instance_eval { command }).not_to match(/DEVICE_TARGET/) end - it "should add the format" do + it 'should add the format' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - @cucumber.format = "test-format" + @cucumber.format = 'test-format' - expect(@cucumber.instance_eval{command}).to match(/--format test-format/) + expect(@cucumber.instance_eval { command }).to match(/--format test-format/) end - it "should not add the format if missing" do + it 'should not add the format if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).not_to match(/--format/) + expect(@cucumber.instance_eval { command }).not_to match(/--format/) end - it "should add the output" do + it 'should add the output' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - @cucumber.output = "test-output" + @cucumber.output = 'test-output' - expect(@cucumber.instance_eval{command}).to match(/--out test-output/) + expect(@cucumber.instance_eval { command }).to match(/--out test-output/) end - it "should not add the output if missing" do + it 'should not add the output if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).not_to match(/--out/) + expect(@cucumber.instance_eval { command }).not_to match(/--out/) end - it "should add the tags" do - @cucumber = Cuesmash::Cucumber.new(["tag1", "tag2"], nil, nil) - expect(@cucumber.instance_eval{command}).to match(/--tags tag1 --tags tag2/) + it 'should add the tags' do + @cucumber = Cuesmash::Cucumber.new(['tag1', 'tag2'], nil, nil) + expect(@cucumber.instance_eval { command }).to match(/--tags tag1 --tags tag2/) end - it "should not add tags if missing" do + it 'should not add tags if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).not_to match(/--tags/) + expect(@cucumber.instance_eval { command }).not_to match(/--tags/) end - it "should add the profile" do - @cucumber = Cuesmash::Cucumber.new(nil, "test", nil) - expect(@cucumber.instance_eval{command}).to match(/--profile test/) + it 'should add the profile' do + @cucumber = Cuesmash::Cucumber.new(nil, 'test', nil) + expect(@cucumber.instance_eval { command }).to match(/--profile test/) end - it "should not add tags if missing" do + it 'should not add tags if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).not_to match(/--profile/) + expect(@cucumber.instance_eval { command }).not_to match(/--profile/) end - it "should add the color flag" do + it 'should add the color flag' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).to match(/-c/) + expect(@cucumber.instance_eval { command }).to match(/-c/) end - it "should not add quiet if missing" do + it 'should not add quiet if missing' do @cucumber = Cuesmash::Cucumber.new(nil, nil, nil) - expect(@cucumber.instance_eval{command}).not_to match(/--quiet/) + expect(@cucumber.instance_eval { command }).not_to match(/--quiet/) end - it "should not add quiet if false" do + it 'should not add quiet if false' do @cucumber = Cuesmash::Cucumber.new(nil, nil, false) - expect(@cucumber.instance_eval{command}).not_to match(/--quiet/) + expect(@cucumber.instance_eval { command }).not_to match(/--quiet/) end - it "should add the quiet flag" do + it 'should add the quiet flag' do @cucumber = Cuesmash::Cucumber.new(nil, nil, true) - expect(@cucumber.instance_eval{command}).to match(/--quiet/) + expect(@cucumber.instance_eval { command }).to match(/--quiet/) end - end end