Sha256: 6525749fd4b7de72d5a721a3604c9d4f4d353359d3af7908a5f18f9c259a2218
Contents?: true
Size: 450 Bytes
Versions: 49
Compression:
Stored size: 450 Bytes
Contents
require File.join(File.dirname(__FILE__), 'spec_helper') describe Lockdown do before do Lockdown.stub!(:version).and_return('1.2.3') end it "should return the correct major version" do Lockdown.major_version.should equal(1) end it "should return the correct minor version" do Lockdown.minor_version.should equal(2) end it "should return the correct patch version" do Lockdown.patch_version.should equal(3) end end
Version data entries
49 entries across 49 versions & 6 rubygems