spec/lib/configuration_spec.rb in jshint-1.3.0 vs spec/lib/configuration_spec.rb in jshint-1.3.1
- old
+ new
@@ -4,50 +4,54 @@
describe Jshint::Configuration do
let(:config) { File.join(Jshint.root, 'spec', 'fixtures', 'jshint.yml') }
describe "core behaviour" do
before do
- described_class.any_instance.stub(:default_config_path).and_return('/foo/bar.yml')
- described_class.any_instance.stub(:parse_yaml_config).and_return(YAML.load_file(config))
+ allow_any_instance_of(described_class).
+ to receive(:default_config_path).and_return('/foo/bar.yml')
+ allow_any_instance_of(described_class).
+ to receive(:parse_yaml_config).and_return(YAML.load_file(config))
end
it "should allow the developer to index in to config options" do
config = described_class.new
- config[:boss].should be_true
- config[:browser].should be_true
+ expect(config[:boss]).to be_truthy
+ expect(config[:browser]).to be_truthy
end
it "should return a Hash of the global variables declared" do
config = described_class.new
- config.global_variables.should == { "jQuery" => true, "$" => true }
+ expect(config.global_variables).to eq({ "jQuery" => true, "$" => true })
end
it "should return a Hash of the lint options declared" do
config = described_class.new
- config.lint_options.should == config.options["options"].reject { |key| key == "globals" }
+ expect(config.lint_options).
+ to eq(config.options["options"].reject { |key| key == "globals" })
end
it "should return an array of files" do
config = described_class.new
- config.files.should == ["**/*.js"]
+ expect(config.files).to eq(["**/*.js"])
end
context "search paths" do
subject { described_class.new }
it "should default the exclusion paths to an empty array" do
- subject.excluded_search_paths.should == []
+ expect(subject.excluded_search_paths).to eq([])
end
it "should set the exclusion paths to those in the config" do
subject.options["exclude_paths"] << 'vendor/assets/javascripts'
- subject.excluded_search_paths.should == ["vendor/assets/javascripts"]
+ expect(subject.excluded_search_paths).to eq(["vendor/assets/javascripts"])
end
it "should be the default search paths minus the exclude paths" do
- subject.search_paths.should == subject.default_search_paths
+ expect(subject.search_paths).to eq(subject.default_search_paths)
subject.options["exclude_paths"] << 'vendor/assets/javascripts'
- subject.search_paths.should == ['app/assets/javascripts', 'lib/assets/javascripts']
+ expect(subject.search_paths).
+ to eq(['app/assets/javascripts', 'lib/assets/javascripts'])
end
end
end
end