require 'spec_helper' require 'capybara_webkit_builder' describe CapybaraWebkitBuilder do let(:builder) { CapybaraWebkitBuilder } it "will use the env variable for #make_bin" do with_env_vars("MAKE" => "fake_make") do builder.make_bin.should == "fake_make" end end it "will use the env variable for #qmake_bin" do with_env_vars("QMAKE" => "fake_qmake") do builder.qmake_bin.should == "fake_qmake" end end it "will use the env variable for #os_spec" do with_env_vars("SPEC" => "fake_os_spec") do builder.spec.should == "fake_os_spec" end end it "defaults the #make_bin" do builder.make_bin.should == 'make' end it "defaults the #qmake_bin" do builder.qmake_bin.should == 'qmake' end it "defaults #spec to the #os_specs" do builder.spec.should == builder.os_spec end end