Sha256: 3eae552c2b9562423206fefe317a283d624561a1570614eb3d69323987e66bf1
Contents?: true
Size: 514 Bytes
Versions: 1
Compression:
Stored size: 514 Bytes
Contents
# encoding: UTF-8 require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Plow" do describe "version synchronizing" do before(:each) do @expected = "0.1.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-0.1.0 | spec/plow_spec.rb |