Sha256: ce04b41a3df9cc3427552e5d6736bb0b8399d462ec96bd5c164a70a97712a60c
Contents?: true
Size: 1000 Bytes
Versions: 9
Compression:
Stored size: 1000 Bytes
Contents
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 with_env_vars("MAKE_BIN" => nil) do builder.make_bin.should == 'make' end end it "defaults the #qmake_bin" do with_env_vars("QMAKE" => nil) do builder.qmake_bin.should == 'qmake' end end it "defaults #spec to the #os_specs" do with_env_vars("SPEC" => nil) do builder.spec.should == builder.os_spec end end end
Version data entries
9 entries across 9 versions & 2 rubygems