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