require File.expand_path("../../../spec_helper.rb", __FILE__) module NcsNavigator describe Configuration, "::VERSION" do it "exists" do lambda { Configuration::VERSION }.should_not raise_error end it "has 3 or 4 dot separated parts" do Configuration::VERSION.split('.').size.should be_between(3, 4) end end end