Sha256: e21c77decc4f6b3303d30b305688ee93340157091bfa83ecfade91b8d8eeabdf
Contents?: true
Size: 470 Bytes
Versions: 1
Compression:
Stored size: 470 Bytes
Contents
# encoding: UTF-8 require 'spec_helper' describe "Plow" do describe "version synchronizing" do before(:each) do @expected = "1.0.0" end it "should be correct for Plow::VERSION" do Plow::VERSION.should == @expected end it "should be correct for the VERSION rubygem file" do actual = File.read(File.expand_path(File.join(File.dirname(__FILE__), '..', 'VERSION'))).chomp actual.should == @expected end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
plow-1.0.0 | spec/plow_spec.rb |